diff --git a/ghost/core/core/server/services/members/members-api/services/payments-service.js b/ghost/core/core/server/services/members/members-api/services/payments-service.js index d80d72c332f..931506bb17b 100644 --- a/ghost/core/core/server/services/members/members-api/services/payments-service.js +++ b/ghost/core/core/server/services/members/members-api/services/payments-service.js @@ -5,6 +5,7 @@ const TierPriceChangeEvent = require('../../../tiers/tier-price-change-event'); const TierNameChangeEvent = require('../../../tiers/tier-name-change-event'); const OfferCreatedEvent = require('../../../offers/domain/events/offer-created-event'); const {BadRequestError} = require('@tryghost/errors'); +const {t} = require('../../../i18n'); class PaymentsService { /** @@ -358,7 +359,10 @@ class PaymentsService { * @returns {string} */ getDonationPriceNickname() { - const nickname = 'Support ' + this.settingsCache.get('title'); + const nickname = t('Support {siteTitle}', { + siteTitle: this.settingsCache.get('title'), + interpolation: {escapeValue: false} + }); return nickname.substring(0, 250); } diff --git a/ghost/core/test/unit/server/services/members/members-api/services/payments-service.test.js b/ghost/core/test/unit/server/services/members/members-api/services/payments-service.test.js index 5c5689863d7..fed56d1baf5 100644 --- a/ghost/core/test/unit/server/services/members/members-api/services/payments-service.test.js +++ b/ghost/core/test/unit/server/services/members/members-api/services/payments-service.test.js @@ -4,6 +4,12 @@ const knex = require('knex').default; const Tier = require('../../../../../../../core/server/services/tiers/tier'); +// Initialise i18n before requiring the service so its destructured `t` import +// resolves to the live i18next instance. The init helper falls back to 'en' +// when the locale setting isn't set. +const i18n = require('../../../../../../../core/server/services/i18n'); +i18n.init(); + const PaymentsService = require('../../../../../../../core/server/services/members/members-api/services/payments-service'); describe('PaymentsService', function () { @@ -451,4 +457,44 @@ describe('PaymentsService', function () { assert.equal(getStripeArgs().customerEmail, null); }); }); + + describe('getDonationPriceNickname', function () { + // i18n.init() reassigns module.exports to the live instance, so re-require to reach it. + const i18nInstance = require('../../../../../../../core/server/services/i18n'); + + function createService(title) { + return new PaymentsService({ + settingsCache: { + get(key) { + return key === 'title' ? title : undefined; + } + } + }); + } + + afterEach(function () { + i18nInstance.changeLanguage('en'); + }); + + it('builds the nickname from the site title', function () { + const service = createService('My Site'); + assert.equal(service.getDonationPriceNickname(), 'Support My Site'); + }); + + it('localizes the prefix while keeping the site title interpolated', async function () { + await i18nInstance.changeLanguage('fr'); + const service = createService('Mon Site'); + assert.equal(service.getDonationPriceNickname(), 'Soutenir Mon Site'); + }); + + it('does not HTML-escape the site title', function () { + const service = createService('Tom & Jerry'); + assert.equal(service.getDonationPriceNickname(), 'Support Tom & Jerry'); + }); + + it('truncates the nickname to 250 characters', function () { + const service = createService('a'.repeat(300)); + assert.equal(service.getDonationPriceNickname().length, 250); + }); + }); }); diff --git a/ghost/i18n/locales/af/ghost.json b/ghost/i18n/locales/af/ghost.json index 8eba13edcf5..c5d31c0e785 100644 --- a/ghost/i18n/locales/af/ghost.json +++ b/ghost/i18n/locales/af/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Kliek op die skakel hieronder om die aanmeldproses vir {siteTitle} te voltooi, en om outomaties in te teken:", "Thank you for signing up to {siteTitle}!": "Dankie dat u aangemeld het by {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Dankie dat u ingeskryf het by {siteTitle}!", diff --git a/ghost/i18n/locales/ar/ghost.json b/ghost/i18n/locales/ar/ghost.json index c97c4c58dda..d90c0dd7ac0 100644 --- a/ghost/i18n/locales/ar/ghost.json +++ b/ghost/i18n/locales/ar/ghost.json @@ -69,6 +69,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "تفاصيل الاشتراك", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "انقر الرابط ادناه لاكمال عملية التسجيل في {siteTitle}, والدخول مباشرة:", "Thank you for signing up to {siteTitle}!": "شكرا لتسجيلك في {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "شكرا لاشتراكك في {siteTitle}!", diff --git a/ghost/i18n/locales/bg/ghost.json b/ghost/i18n/locales/bg/ghost.json index 58fbada02b4..b20aa5fb16d 100644 --- a/ghost/i18n/locales/bg/ghost.json +++ b/ghost/i18n/locales/bg/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "Някой току-що отговори на коментара ви", "Someone just replied to your comment on {postTitle}.": "Някой току-що отговори на коментара ви към {postTitle}.", "Subscription details": "Детайли за абонамента", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Използвайте бутона долу, за да създадете профил в {siteTitle} и да влезете автоматично в сайта:", "Thank you for signing up to {siteTitle}!": "Благодарим Ви, че се регистрирахте в {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Благодарим Ви, че се абонирахте за {siteTitle}!", diff --git a/ghost/i18n/locales/bn/ghost.json b/ghost/i18n/locales/bn/ghost.json index 30183abc985..7d29d113f89 100644 --- a/ghost/i18n/locales/bn/ghost.json +++ b/ghost/i18n/locales/bn/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "{siteTitle} এর সাইন আপ প্রক্রিয়া সম্পূর্ণ করতে নিচের লিঙ্কে ট্যাপ করুন, এবং স্বয়ংক্রিয়ভাবে সাইন ইন হবেন:", "Thank you for signing up to {siteTitle}!": "{siteTitle} এ সাইন আপ করার জন্য ধন্যবাদ!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} এ সাবস্ক্রাইব করার জন্য ধন্যবাদ!", diff --git a/ghost/i18n/locales/bs/ghost.json b/ghost/i18n/locales/bs/ghost.json index cd1183e605c..3949a995da0 100644 --- a/ghost/i18n/locales/bs/ghost.json +++ b/ghost/i18n/locales/bs/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Klikni na link ispod da dovršiš kreiranje računa za {siteTitle} i automatsku prijavu:", "Thank you for signing up to {siteTitle}!": "Hvala na kreiranju računa za {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Hvala na pretplati za {siteTitle}!", diff --git a/ghost/i18n/locales/ca/ghost.json b/ghost/i18n/locales/ca/ghost.json index c0aa72efdc3..c4a395d3ac2 100644 --- a/ghost/i18n/locales/ca/ghost.json +++ b/ghost/i18n/locales/ca/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Detalls de la subscripció", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Fes clic sobre l'enllaç per completar el procés de registre a {siteTitle} i iniciar sessió automàticament:", "Thank you for signing up to {siteTitle}!": "Gràcies per registrar-te a {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Gràcies per subscriure't a {siteTitle}!", diff --git a/ghost/i18n/locales/context.json b/ghost/i18n/locales/context.json index 805de1f82f2..5a58df2efc1 100644 --- a/ghost/i18n/locales/context.json +++ b/ghost/i18n/locales/context.json @@ -313,6 +313,7 @@ "Success! Your account is fully activated, you now have access to all content.": "Notification text when a user has activated their email and can access content", "Success! Your email is updated.": "Notification text when a user has updated their email address", "Successfully unsubscribed": "A confirmation message when a member clicks an unsubscribe link", + "Support {siteTitle}": "Label used in the Stripe Checkout product title for site donations", "Tags": "Search results header", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Magic link email", "Thank you for signing up to {siteTitle}!": "Magic link email", diff --git a/ghost/i18n/locales/cs/ghost.json b/ghost/i18n/locales/cs/ghost.json index d3c44d81555..21a3b0364c5 100644 --- a/ghost/i18n/locales/cs/ghost.json +++ b/ghost/i18n/locales/cs/ghost.json @@ -65,6 +65,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Detaily předplatného", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Klikněte na následující odkaz pro dokončení registrace u {siteTitle} a automatické přihlášení:", "Thank you for signing up to {siteTitle}!": "Děkujeme za registraci u {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Děkujeme za odběr na {siteTitle}!", diff --git a/ghost/i18n/locales/da/ghost.json b/ghost/i18n/locales/da/ghost.json index 9788da7f5b2..3f8021178db 100644 --- a/ghost/i18n/locales/da/ghost.json +++ b/ghost/i18n/locales/da/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Abonnementsoplysninger", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Klik på linked nedenfor for at gennemføre oprettelsen af din konto hos {siteTitle}. Du bliver automatisk logget ind:", "Thank you for signing up to {siteTitle}!": "Tak fordi du oprettede en konto hos {siteTitle}", "Thank you for subscribing to {siteTitle}!": "Tak fordi du abonnerer hos {siteTitle}", diff --git a/ghost/i18n/locales/de-CH/ghost.json b/ghost/i18n/locales/de-CH/ghost.json index 38e7c450ad1..ec82355be44 100644 --- a/ghost/i18n/locales/de-CH/ghost.json +++ b/ghost/i18n/locales/de-CH/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "Jemand hat gerade auf Ihren Kommentar geantwortet", "Someone just replied to your comment on {postTitle}.": "Jemand hat gerade auf Ihren Kommentar zu {postTitle} geantwortet", "Subscription details": "Abo Details", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Mit dem untenstehenden Link schliessen Sie Ihre Registrierung bei «{siteTitle}» ab:", "Thank you for signing up to {siteTitle}!": "Danke für Ihre Registrierung bei unserer Seite «{siteTitle}»!", "Thank you for subscribing to {siteTitle}!": "Danke für Ihr Abo bei unserer Seite «{siteTitle}»!", diff --git a/ghost/i18n/locales/de/ghost.json b/ghost/i18n/locales/de/ghost.json index 9b4f9584822..e8bcb7e7315 100644 --- a/ghost/i18n/locales/de/ghost.json +++ b/ghost/i18n/locales/de/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "Jemand hat auf deinen Kommentar geantwortet", "Someone just replied to your comment on {postTitle}.": "Jemand hat auf deinen Kommentar zu {postTitle} geantwortet.", "Subscription details": "Abo Details", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Bitte klicke auf den unten stehenden Link, um deine Registrierung bei {siteTitle} abzuschließen und automatisch eingeloggt zu werden:", "Thank you for signing up to {siteTitle}!": "Danke für deine Registrierung bei {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Danke für dein Abonnement von {siteTitle}!", diff --git a/ghost/i18n/locales/el/ghost.json b/ghost/i18n/locales/el/ghost.json index 06d9a4d2bc7..62e8fb533da 100644 --- a/ghost/i18n/locales/el/ghost.json +++ b/ghost/i18n/locales/el/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Πατήστε τον παρακάτω σύνδεσμο για να ολοκληρώσετε τη διαδικασία εγγραφής στο {siteTitle} και να συνδεθείτε αυτόματα:", "Thank you for signing up to {siteTitle}!": "Ευχαριστούμε που εγγραφήκατε στο {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Ευχαριστούμε που εγγραφήκατε στο {siteTitle}!", diff --git a/ghost/i18n/locales/en/ghost.json b/ghost/i18n/locales/en/ghost.json index 46b0615ee40..0fafa97e92d 100644 --- a/ghost/i18n/locales/en/ghost.json +++ b/ghost/i18n/locales/en/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "", "Thank you for signing up to {siteTitle}!": "", "Thank you for subscribing to {siteTitle}!": "", diff --git a/ghost/i18n/locales/eo/ghost.json b/ghost/i18n/locales/eo/ghost.json index 136da1af705..a6d6dd105e4 100644 --- a/ghost/i18n/locales/eo/ghost.json +++ b/ghost/i18n/locales/eo/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Premu la suban ligilon por kompletigi la aliĝprocezon por {siteTitle}, kaj estu ensalutinta aŭtomate:", "Thank you for signing up to {siteTitle}!": "Dankon pro aliĝi al {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Dankon pro abono al {siteTitle}!", diff --git a/ghost/i18n/locales/es/ghost.json b/ghost/i18n/locales/es/ghost.json index 08c5096b342..96254b8180b 100644 --- a/ghost/i18n/locales/es/ghost.json +++ b/ghost/i18n/locales/es/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "Alguien acaba de responder a tu comentario", "Someone just replied to your comment on {postTitle}.": "Alguien acaba de responder a tu comentario en {postTitle}.", "Subscription details": "Detalles de tu suscripción", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Haz clic en el siguiente enlace para completar el registro en {siteTitle}, e iniciar sesión automáticamente:", "Thank you for signing up to {siteTitle}!": "¡Gracias por tu registro en {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "¡Gracias por tu suscripción a {siteTitle}!", diff --git a/ghost/i18n/locales/et/ghost.json b/ghost/i18n/locales/et/ghost.json index fa288f9e0d8..79426bb855b 100644 --- a/ghost/i18n/locales/et/ghost.json +++ b/ghost/i18n/locales/et/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Vajuta alloleval lingil, et lõpetada {siteTitle} registreerimisprotsess ja et automaatselt sisse logida:", "Thank you for signing up to {siteTitle}!": "Aitäh, et registreerusid {siteTitle} kasutajaks!", "Thank you for subscribing to {siteTitle}!": "Aitäh, et hakkasid {siteTitle} jälgijaks!", diff --git a/ghost/i18n/locales/eu/ghost.json b/ghost/i18n/locales/eu/ghost.json index 962f5c21e9d..a80ffbbe175 100644 --- a/ghost/i18n/locales/eu/ghost.json +++ b/ghost/i18n/locales/eu/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "Norbaitek zure iruzkinari erantzun dio", "Someone just replied to your comment on {postTitle}.": "Norbaitek {postTitle} argitalpenean egin zenuen iruzkinari erantzun dio.", "Subscription details": "Harpidetzaren xehetasunak", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Egin tap beheko estekan {siteTitle}(e)ko izen-ematea burutzeko eta saioa automatikoki hasteko:", "Thank you for signing up to {siteTitle}!": "Eskerrik asko {siteTitle}(e)n izena emateagatik!", "Thank you for subscribing to {siteTitle}!": "Eskerrik asko {siteTitle}(e)ra harpidetzeagatik!", diff --git a/ghost/i18n/locales/fa/ghost.json b/ghost/i18n/locales/fa/ghost.json index 3731e1a23ae..7c814443eb9 100644 --- a/ghost/i18n/locales/fa/ghost.json +++ b/ghost/i18n/locales/fa/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "برای تکمیل عضویت خود برای وب\u200cسایت {siteTitle} برروی پیوند زیر کلیک کنید، پس از آن شما به صورت خودکار وارد حساب خود خواهید شد:", "Thank you for signing up to {siteTitle}!": "با سپاس از عضویت شما برای وب\u200cسایت {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "با سپاس از مشترک شدن شما به برای وب\u200cسایت {siteTitle}!", diff --git a/ghost/i18n/locales/fi/ghost.json b/ghost/i18n/locales/fi/ghost.json index b42e33d4564..741caf576ad 100644 --- a/ghost/i18n/locales/fi/ghost.json +++ b/ghost/i18n/locales/fi/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "Joku on juuri vastannut kommenttiisi", "Someone just replied to your comment on {postTitle}.": "Joku on juuri vastannut kommenttiisi kirjoituksessa {postTitle}", "Subscription details": "Tilauksen tiedot", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Klikkaa alla olevaa linkkiä viimeistelläksesi rekisteröitymisen sivulle {siteTitle}:", "Thank you for signing up to {siteTitle}!": "Kiitos rekisteröitymisestä sivulle {siteTitle}", "Thank you for subscribing to {siteTitle}!": "Kiitos tilauksestasi sivulle {siteTitle}", diff --git a/ghost/i18n/locales/fr/ghost.json b/ghost/i18n/locales/fr/ghost.json index 94e8c00c69d..22297477387 100644 --- a/ghost/i18n/locales/fr/ghost.json +++ b/ghost/i18n/locales/fr/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "Quelqu'un vient de répondre à votre commentaire", "Someone just replied to your comment on {postTitle}.": "Quelqu'un vient de répondre à votre commentaire sur {postTitle}.", "Subscription details": "Détails de l'abonnement", + "Support {siteTitle}": "Soutenir {siteTitle}", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Cliquez sur le lien ci-dessous pour compléter votre inscription à {siteTitle} et vous connecter automatiquement :", "Thank you for signing up to {siteTitle}!": "Merci pour votre inscription à {siteTitle} !", "Thank you for subscribing to {siteTitle}!": "Merci pour votre abonnement à {siteTitle} !", diff --git a/ghost/i18n/locales/gd/ghost.json b/ghost/i18n/locales/gd/ghost.json index 02eca76126c..3480c25e87f 100644 --- a/ghost/i18n/locales/gd/ghost.json +++ b/ghost/i18n/locales/gd/ghost.json @@ -65,6 +65,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Fiosrachadh an fho-sgrìobhaidh", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Dèan briog air a' cheangal gu h-ìosal gus dearbhadh gu bheil thu airson cunntas a chlàradh air an làrach-lìn, {siteTitle}, agus thèid do chlàradh a-steach gu fèin-obrachail", "Thank you for signing up to {siteTitle}!": "Mòran taing airson cunntas a chlàradh air an làrach-lìn, {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Mòran taing airson fo-sgrìobhadh ris an làrach-lìn, {siteTitle}!", diff --git a/ghost/i18n/locales/he/ghost.json b/ghost/i18n/locales/he/ghost.json index fd6e8bfe3f1..7e9cc639a2a 100644 --- a/ghost/i18n/locales/he/ghost.json +++ b/ghost/i18n/locales/he/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "פרטי מינוי", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "לחצו על הלינק למטה כדי לסיים את תהליך ההרשמה אל {siteTitle}, ותיכנסו למערכת באופן אוטומטי:", "Thank you for signing up to {siteTitle}!": "תודה שנרשמתם אל {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "תודה שנרשמתם אל {siteTitle}!", diff --git a/ghost/i18n/locales/hi/ghost.json b/ghost/i18n/locales/hi/ghost.json index d5842aac5d3..528dca21747 100644 --- a/ghost/i18n/locales/hi/ghost.json +++ b/ghost/i18n/locales/hi/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "किसी ने आपकी टिप्पणी का उत्तर दिया है", "Someone just replied to your comment on {postTitle}.": "किसी ने आपकी {postTitle} पर की गई टिप्पणी का उत्तर दिया है।", "Subscription details": "सदस्यता विवरण", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "{siteTitle} के लिए साइनअप प्रक्रिया को पूरा करने के लिए नीचे दिए गए लिंक पर टैप करें, और स्वचालित रूप से साइन इन हो जाएं:", "Thank you for signing up to {siteTitle}!": "{siteTitle} के लिए साइनअप करने के लिए धन्यवाद!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} की सदस्यता लेने के लिए धन्यवाद!", diff --git a/ghost/i18n/locales/hr/ghost.json b/ghost/i18n/locales/hr/ghost.json index c141b16de19..a05840b6dc6 100644 --- a/ghost/i18n/locales/hr/ghost.json +++ b/ghost/i18n/locales/hr/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Detalji pretplate", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Završite registraciju na {siteTitle} klikom na ovaj link i automatski se prijavite:", "Thank you for signing up to {siteTitle}!": "Hvala vam na registraciji na {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Hvala vam na pretplati na {siteTitle}!", diff --git a/ghost/i18n/locales/hu/ghost.json b/ghost/i18n/locales/hu/ghost.json index 6a1ff27acf0..f325a61697b 100644 --- a/ghost/i18n/locales/hu/ghost.json +++ b/ghost/i18n/locales/hu/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "Valaki válaszolt a hozzászólásodra", "Someone just replied to your comment on {postTitle}.": "Valaki válaszolt a hozzászólásodra ennél a bejegyzésnél: {postTitle}", "Subscription details": "Előfizetés részletei", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Kattints az alábbi linkre a regisztráció befejezéséhez és az automatikus belépéshez {siteTitle} oldalon:", "Thank you for signing up to {siteTitle}!": "{siteTitle} — Köszönjük a regisztrációt!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} — Köszönjük a feliratkozást!", diff --git a/ghost/i18n/locales/id/ghost.json b/ghost/i18n/locales/id/ghost.json index 2225d721e4f..5f9b27f442c 100644 --- a/ghost/i18n/locales/id/ghost.json +++ b/ghost/i18n/locales/id/ghost.json @@ -59,6 +59,7 @@ "Someone just replied to your comment": "Seseorang baru saja membalas komentar Anda", "Someone just replied to your comment on {postTitle}.": "Seseorang baru saja membalas komentar Anda pada {postTitle}.", "Subscription details": "Keterangan langganan", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Ketuk tautan di bawah ini untuk menyelesaikan proses pendaftaran pada {siteTitle}, dan masuk secara otomatis:", "Thank you for signing up to {siteTitle}!": "Terima kasih telah mendaftar ke {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Terima kasih telah berlangganan ke {siteTitle}!", diff --git a/ghost/i18n/locales/is/ghost.json b/ghost/i18n/locales/is/ghost.json index ec74720fc85..44ee672da9b 100644 --- a/ghost/i18n/locales/is/ghost.json +++ b/ghost/i18n/locales/is/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Smellið á hlekkinn að neðan til að ganga frá skráningarferlingu fyrir {siteTitle}, og til að virkja sjálfvirka innskráningu:", "Thank you for signing up to {siteTitle}!": "Takk fyrir nýskráningu á {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Takk fyrir áskriftina að {siteTitle}!", diff --git a/ghost/i18n/locales/it/ghost.json b/ghost/i18n/locales/it/ghost.json index 533cd5f1992..e2f6c34f0d7 100644 --- a/ghost/i18n/locales/it/ghost.json +++ b/ghost/i18n/locales/it/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "Qualcuno ha appena risposto al tuo commento", "Someone just replied to your comment on {postTitle}.": "Qualcuno ha appena risposto al tuo commento su {postTitle}.", "Subscription details": "Dettagli", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Clicca il link qui sotto per confermare l'iscrizione a {siteTitle}, ed effettuare automaticamente l'accesso:", "Thank you for signing up to {siteTitle}!": "Grazie per esserti iscritto a {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Grazie per esserti abbonato a {siteTitle}!", diff --git a/ghost/i18n/locales/ja/ghost.json b/ghost/i18n/locales/ja/ghost.json index f06b82a5654..0940da70055 100644 --- a/ghost/i18n/locales/ja/ghost.json +++ b/ghost/i18n/locales/ja/ghost.json @@ -59,6 +59,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "下のリンクを選択すると新規登録が完了し、自動でログインします。", "Thank you for signing up to {siteTitle}!": "{siteTitle}の新規登録ありがとうございます!", "Thank you for subscribing to {siteTitle}!": "{siteTitle}の購読ありがとうございます!", diff --git a/ghost/i18n/locales/ko/ghost.json b/ghost/i18n/locales/ko/ghost.json index d45df5e6aa6..cd3bb87bbc7 100644 --- a/ghost/i18n/locales/ko/ghost.json +++ b/ghost/i18n/locales/ko/ghost.json @@ -59,6 +59,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "구독 상세정보", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "{siteTitle}의 가입을 완료하고, 자동으로 로그인하려면 아래 링크를 탭해 주세요:", "Thank you for signing up to {siteTitle}!": "{siteTitle}에 가입 감사해요!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} 구독 감사해요!", diff --git a/ghost/i18n/locales/kz/ghost.json b/ghost/i18n/locales/kz/ghost.json index 83955b4aa67..e5d4c4e2718 100644 --- a/ghost/i18n/locales/kz/ghost.json +++ b/ghost/i18n/locales/kz/ghost.json @@ -1,7 +1,9 @@ { "{count} month_one": "", + "{count} month_many": "", "{count} month_other": "", "{count} year_one": "", + "{count} year_many": "", "{count} year_other": "", "{date}": "{date}", "{tierName} membership": "", @@ -61,6 +63,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "{siteTitle} сайтына тіркелу процесін аяқтау үшін және жүйеге автоматты түрде кіру үшін төмендегі сілтемені басыңыз:", "Thank you for signing up to {siteTitle}!": "{siteTitle} сайтына тіркелгеніңіз үшін алғыс білдіреміз!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} сайтына жазылғаныңыз үшін алғыс білдіреміз!", diff --git a/ghost/i18n/locales/lt/ghost.json b/ghost/i18n/locales/lt/ghost.json index c2da64f6fc1..bcba64bd34e 100644 --- a/ghost/i18n/locales/lt/ghost.json +++ b/ghost/i18n/locales/lt/ghost.json @@ -65,6 +65,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Bakstelėkite toliau pateiktą nuorodą, kad užbaigtumėte registracijos prie {siteTitle} procesą ir būtumėte automatiškai prijungti:", "Thank you for signing up to {siteTitle}!": "Ačiū, kad registravotės {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Ačiū, kad prenumeravote {siteTitle}!", diff --git a/ghost/i18n/locales/lv/ghost.json b/ghost/i18n/locales/lv/ghost.json index 71c7aa0ed4d..fd0489d0ce5 100644 --- a/ghost/i18n/locales/lv/ghost.json +++ b/ghost/i18n/locales/lv/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Informācija par abonementu", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Pieskarieties tālāk esošajai saitei, lai pabeigtu reģistrācijas procesu vietnei {siteTitle} un automātiski pierakstītos:", "Thank you for signing up to {siteTitle}!": "Paldies, ka reģistrējāties vietnē {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Paldies, ka abonējat vietni {siteTitle}!", diff --git a/ghost/i18n/locales/mk/ghost.json b/ghost/i18n/locales/mk/ghost.json index 77e29c1a1c5..9ea9e007f90 100644 --- a/ghost/i18n/locales/mk/ghost.json +++ b/ghost/i18n/locales/mk/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Кликнете на линкот подолу за да ја завршите регистрацијата за {siteTitle}. Ќе бидете автоматски најавени.", "Thank you for signing up to {siteTitle}!": "Ви благодариме за регистрацијата на {siteTitle}", "Thank you for subscribing to {siteTitle}!": "Ви благодариме за претплатата на {siteTitle}!", diff --git a/ghost/i18n/locales/mn/ghost.json b/ghost/i18n/locales/mn/ghost.json index 76db40b2742..171e16564af 100644 --- a/ghost/i18n/locales/mn/ghost.json +++ b/ghost/i18n/locales/mn/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Захиалгын дэлгэрэнгүй", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Доорх холбоосыг дарснаар {siteTitle} бүртгэлээ дуусгаж, автоматаар нэвтрэнэ:", "Thank you for signing up to {siteTitle}!": "{siteTitle}-д бүртгүүлсэнд баярлалаа!", "Thank you for subscribing to {siteTitle}!": "{siteTitle}-д захиалга өгсөнд баярлалаа!", diff --git a/ghost/i18n/locales/ms/ghost.json b/ghost/i18n/locales/ms/ghost.json index a44f4734f23..c5a57585cf6 100644 --- a/ghost/i18n/locales/ms/ghost.json +++ b/ghost/i18n/locales/ms/ghost.json @@ -59,6 +59,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Ketik pautan di bawah untuk melengkapkan proses pendaftaran {siteTitle} dan log masuk secara automatik:", "Thank you for signing up to {siteTitle}!": "Terima kasih kerana mendaftar ke {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Terima kasih kerana melanggan {siteTitle}!", diff --git a/ghost/i18n/locales/nb/ghost.json b/ghost/i18n/locales/nb/ghost.json index c4b69a270b0..451cf490faf 100644 --- a/ghost/i18n/locales/nb/ghost.json +++ b/ghost/i18n/locales/nb/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Abonnementsdetaljer", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Trykk på lenken nedenfor for å fullføre registreringsprosessen for {siteTitle}. Du blir automatisk logget inn:", "Thank you for signing up to {siteTitle}!": "Takk for at du registrerte deg på {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Takk for at du abonnerer på {siteTitle}!", diff --git a/ghost/i18n/locales/ne/ghost.json b/ghost/i18n/locales/ne/ghost.json index 204b28baee7..cc3f2a86d44 100644 --- a/ghost/i18n/locales/ne/ghost.json +++ b/ghost/i18n/locales/ne/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "कसैले भर्खरै तपाईंको प्रतिक्रियामा नयाँ प्रत्युत्तर दिएको छ", "Someone just replied to your comment on {postTitle}.": "{postTitle} मा तपाईंको प्रतिक्रियामा कसैले भर्खरै प्रत्युत्तर दिएको छ।", "Subscription details": "सदस्यता विवरण", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "तलको लिङ्कमा ट्याप गरी {siteTitle} को दर्ता प्रक्रिया पुरा गर्नुहोस्, र स्वचालित रूपमा साइन इन हुनुहोस्:", "Thank you for signing up to {siteTitle}!": "{siteTitle} मा दर्ता गर्नुभएकोमा धन्यवाद!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} मा सदस्यता लिनुभएकोमा धन्यवाद!", diff --git a/ghost/i18n/locales/nl/ghost.json b/ghost/i18n/locales/nl/ghost.json index 417e4300f6b..743e3682935 100644 --- a/ghost/i18n/locales/nl/ghost.json +++ b/ghost/i18n/locales/nl/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Abonnementsgegevens", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Klik op de link hieronder om je registratie voor {siteTitle} af te ronden en automatisch in te loggen:", "Thank you for signing up to {siteTitle}!": "Bedankt voor het aanmelden bij {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Bedankt voor je abonnement op {siteTitle}!", diff --git a/ghost/i18n/locales/nn/ghost.json b/ghost/i18n/locales/nn/ghost.json index 0910a2bb620..64e5ace4f80 100644 --- a/ghost/i18n/locales/nn/ghost.json +++ b/ghost/i18n/locales/nn/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Klikk på lenka nedanfor for å fullføra registreringa di til {siteTitle}, og bli automatisk innlogga:", "Thank you for signing up to {siteTitle}!": "Takk for at du registrerte deg hos {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Takk for at du abonnerer på {siteTitle}!", diff --git a/ghost/i18n/locales/pa/ghost.json b/ghost/i18n/locales/pa/ghost.json index b1f99a5dfa6..fefa63bf719 100644 --- a/ghost/i18n/locales/pa/ghost.json +++ b/ghost/i18n/locales/pa/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "ਕਿਸੇ ਨੇ ਹੁਣੇ ਹੀ ਤੁਹਾਡੀ ਟਿੱਪਣੀ ਦਾ ਜਵਾਬ ਦਿੱਤਾ ਹੈ", "Someone just replied to your comment on {postTitle}.": "ਕਿਸੇ ਨੇ ਹੁਣੇ ਹੀ ਤੁਹਾਡੀ ਟਿੱਪਣੀ {postTitle} 'ਤੇ ਜਵਾਬ ਦਿੱਤਾ ਹੈ।", "Subscription details": "ਸਦੱਸਤਾ ਵੇਰਵੇ", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "{siteTitle} ਲਈ ਸਾਈਨ-ਅੱਪ ਪ੍ਰਕਿਰਿਆ ਨੂੰ ਪੂਰਾ ਕਰਨ ਲਈ ਹੇਠਾਂ ਦਿੱਤਾ ਲਿੰਕ ਦਬਾਓ, ਅਤੇ ਸਵੈਚਲਿਤ ਤੌਰ 'ਤੇ ਸਾਈਨ ਇਨ ਹੋ ਜਾਓ:", "Thank you for signing up to {siteTitle}!": "{siteTitle} 'ਤੇ ਸਾਈਨ-ਅੱਪ ਕਰਨ ਲਈ ਤੁਹਾਡਾ ਧੰਨਵਾਦ!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} ਤੇ ਸਬਸਕ੍ਰਾਈਬ ਕਰਨ ਲਈ ਤੁਹਾਡਾ ਧੰਨਵਾਦ!", diff --git a/ghost/i18n/locales/pl/ghost.json b/ghost/i18n/locales/pl/ghost.json index 790b63253c2..c56783eeb3e 100644 --- a/ghost/i18n/locales/pl/ghost.json +++ b/ghost/i18n/locales/pl/ghost.json @@ -65,6 +65,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Szczegóły subskrypcji", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Kliknij w link poniżej, aby dokończyć proces rejestracji do {siteTitle}:", "Thank you for signing up to {siteTitle}!": "Dziękujemy za rejestrację w {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Dziękujemy za zapisanie się do {siteTitle}!", diff --git a/ghost/i18n/locales/pt-BR/ghost.json b/ghost/i18n/locales/pt-BR/ghost.json index 75bf1dc5762..eb651b2f8e7 100644 --- a/ghost/i18n/locales/pt-BR/ghost.json +++ b/ghost/i18n/locales/pt-BR/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "Alguém respondeu ao seu comentário", "Someone just replied to your comment on {postTitle}.": "Alguém respondeu ao seu comentário em {postTitle}.", "Subscription details": "Detalhes da assinatura", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Clique no link abaixo para completar o processo de cadastro no site {siteTitle} e entrar automaticamente:", "Thank you for signing up to {siteTitle}!": "Obrigado por se cadastrar no site {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Obrigado por se inscrever no site {siteTitle}!", diff --git a/ghost/i18n/locales/pt/ghost.json b/ghost/i18n/locales/pt/ghost.json index 3bb59777372..791382204cd 100644 --- a/ghost/i18n/locales/pt/ghost.json +++ b/ghost/i18n/locales/pt/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "Alguém respondeu ao seu comentário", "Someone just replied to your comment on {postTitle}.": "Alguém respondeu ao seu comentário em {postTitle}.", "Subscription details": "Detalhes da subscrição", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Clique no link abaixo para completar o processo de registo em {siteTitle}, e entrar automaticamente:", "Thank you for signing up to {siteTitle}!": "Obrigado por se registar no {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Obrigado por subscrever o {siteTitle}!", diff --git a/ghost/i18n/locales/ro/ghost.json b/ghost/i18n/locales/ro/ghost.json index 071e542ac09..11d6d48a642 100644 --- a/ghost/i18n/locales/ro/ghost.json +++ b/ghost/i18n/locales/ro/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Detalii abonament", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Apasă pe link-ul de mai jos pentru a finaliza procesul de înregistrare la {siteTitle} și pentru a fi conectat automat:", "Thank you for signing up to {siteTitle}!": "Îți mulțumim că te-ai înregistrat la {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Îți mulțumim că te-ai abonat la {siteTitle}!", diff --git a/ghost/i18n/locales/ru/ghost.json b/ghost/i18n/locales/ru/ghost.json index feb1857b312..652b99266aa 100644 --- a/ghost/i18n/locales/ru/ghost.json +++ b/ghost/i18n/locales/ru/ghost.json @@ -65,6 +65,7 @@ "Someone just replied to your comment": "Кто-то только что ответил на ваш комментарий", "Someone just replied to your comment on {postTitle}.": "Кто-то только что ответил на ваш комментарий к записи {postTitle}.", "Subscription details": "Детали подписки", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Нажмите на ссылку ниже, чтобы завершить процесс регистрации на {siteTitle} и автоматически войти:", "Thank you for signing up to {siteTitle}!": "Спасибо за регистрацию на {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Спасибо за подписку на {siteTitle}!", diff --git a/ghost/i18n/locales/si/ghost.json b/ghost/i18n/locales/si/ghost.json index 99591b496bf..aa20f66131d 100644 --- a/ghost/i18n/locales/si/ghost.json +++ b/ghost/i18n/locales/si/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "{siteTitle} වෙත signup වීම සිදු කිරීම සඳහා පහත link එක tap කරන්න. ඒ හරහා ඔබව ස්ව්\u200dයංක්\u200dරීයව sign in වනු ඇත:", "Thank you for signing up to {siteTitle}!": "{siteTitle} වෙත signup වීම වෙනුවෙන් ඔබට ස්තූතිවන්ත වෙන්නෙමු!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} වෙත subscribe වීම වෙනුවෙන් ඔබට ස්තූතිවන්ත වෙන්නෙමු!", diff --git a/ghost/i18n/locales/sk/ghost.json b/ghost/i18n/locales/sk/ghost.json index bbb7ba66768..ba01f2366bf 100644 --- a/ghost/i18n/locales/sk/ghost.json +++ b/ghost/i18n/locales/sk/ghost.json @@ -65,6 +65,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Podrobnosti odberu", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Kliknite na nasledujúci odkaz pre dokončenie registrácie na {siteTitle} a automatické prihlásenie:", "Thank you for signing up to {siteTitle}!": "Ďakujeme za registráciu na {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Ďakujeme za odber z {siteTitle}!", diff --git a/ghost/i18n/locales/sl/ghost.json b/ghost/i18n/locales/sl/ghost.json index 9d93d754abc..25302cafd0c 100644 --- a/ghost/i18n/locales/sl/ghost.json +++ b/ghost/i18n/locales/sl/ghost.json @@ -65,6 +65,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "Podrobnosti naročnine", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Kliknite spodnjo povezavo, da dokončate postopek prijave na {siteTitle} in se samodejno prijavite:", "Thank you for signing up to {siteTitle}!": "Hvala za prijavo na {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Hvala, ker ste se naročili na {siteTitle}!", diff --git a/ghost/i18n/locales/sq/ghost.json b/ghost/i18n/locales/sq/ghost.json index 8b5c84b7883..142cdd33209 100644 --- a/ghost/i18n/locales/sq/ghost.json +++ b/ghost/i18n/locales/sq/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Prekni lidhjen më poshtë për të përfunduar procesin e regjistrimit për {siteTitle}, dhe të identifikoheni automatikisht", "Thank you for signing up to {siteTitle}!": "Faleminderit per rregjistrimin ne {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Faleminderit per abonimin tuaj ne {siteTitle}!", diff --git a/ghost/i18n/locales/sr-Cyrl/ghost.json b/ghost/i18n/locales/sr-Cyrl/ghost.json index 8b07048504b..b8ac920b890 100644 --- a/ghost/i18n/locales/sr-Cyrl/ghost.json +++ b/ghost/i18n/locales/sr-Cyrl/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "Неко је управо одговорио на Ваш коментар", "Someone just replied to your comment on {postTitle}.": "Неко је управо одговорио на Ваш коментар на {postTitle}.", "Subscription details": "Детаљи претплате", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Кликните на линк испод како бисте успешно завршили регистрацију за {siteTitle} и аутоматски ћете бити пријављени:", "Thank you for signing up to {siteTitle}!": "Хвала на регистрацији на {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Хвала за претплату на {siteTitle}!", diff --git a/ghost/i18n/locales/sr/ghost.json b/ghost/i18n/locales/sr/ghost.json index 8f346764c7d..a73be9ce87d 100644 --- a/ghost/i18n/locales/sr/ghost.json +++ b/ghost/i18n/locales/sr/ghost.json @@ -63,6 +63,7 @@ "Someone just replied to your comment": "Neko je upravo odgovorio na Vaš komentar", "Someone just replied to your comment on {postTitle}.": "Neko je upravo odgovorio na Vaš komentar na {postTitle}.", "Subscription details": "Detalji pretplate", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Kliknite na link ispod kako biste uspešno završili registraciju za {siteTitle} i automatski ćete biti prijavljeni:", "Thank you for signing up to {siteTitle}!": "Hvala na registraciji na {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Hvala za pretplatu na {siteTitle}!", diff --git a/ghost/i18n/locales/sv/ghost.json b/ghost/i18n/locales/sv/ghost.json index 8b5d7a96a86..5db4900e0dd 100644 --- a/ghost/i18n/locales/sv/ghost.json +++ b/ghost/i18n/locales/sv/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "Någon svarade just på din kommentar", "Someone just replied to your comment on {postTitle}.": "Någon svarade just på din kommentar i {postTitle}.", "Subscription details": "Prenumerationsdetaljer", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Klicka på länken nedan för att slutföra registreringen för {siteTitle} och bli automatiskt inloggad:", "Thank you for signing up to {siteTitle}!": "Tack för att du registrerade dig på {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Tack för att du prenumererar på {siteTitle}!", diff --git a/ghost/i18n/locales/sw/ghost.json b/ghost/i18n/locales/sw/ghost.json index d5fb093c15b..46fc1309963 100644 --- a/ghost/i18n/locales/sw/ghost.json +++ b/ghost/i18n/locales/sw/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Gusa kiungo kilicho chini kumaliza mchakato wa usajili kwa {siteTitle}, na utaingia kiotomati:", "Thank you for signing up to {siteTitle}!": "Asante kwa kujisajili kwa {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Asante kwa kujiunga na {siteTitle}!", diff --git a/ghost/i18n/locales/ta/ghost.json b/ghost/i18n/locales/ta/ghost.json index 8169eceda09..3518db2d8be 100644 --- a/ghost/i18n/locales/ta/ghost.json +++ b/ghost/i18n/locales/ta/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "{siteTitle} க்கான பதிவுசெய்தலை முடிக்க கீழே உள்ள இணைப்பைத் தட்டவும், உங்கள் கணக்கு தானாக உள்நுழையப்படும்:", "Thank you for signing up to {siteTitle}!": "{siteTitle} க்கு பதிவு செய்ததற்கு நன்றி!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} க்கு சந்தா செய்ததற்கு நன்றி!", diff --git a/ghost/i18n/locales/th/ghost.json b/ghost/i18n/locales/th/ghost.json index 10e26e3e271..b4fd09dcf72 100644 --- a/ghost/i18n/locales/th/ghost.json +++ b/ghost/i18n/locales/th/ghost.json @@ -59,6 +59,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "แตะลิงก์ด้านล่างเพื่อเสร็จสิ้นขั้นตอนการสมัครใช้งาน {siteTitle} และลงชื่อเข้าใช้โดยอัตโนมัติ:", "Thank you for signing up to {siteTitle}!": "ขอบคุณสำหรับการสมัครใช้งาน {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "ขอบคุณที่รับสมัครข้อมูลจาก {siteTitle}!", diff --git a/ghost/i18n/locales/tr/ghost.json b/ghost/i18n/locales/tr/ghost.json index d41cfc20a90..334b7efc849 100644 --- a/ghost/i18n/locales/tr/ghost.json +++ b/ghost/i18n/locales/tr/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "Birisi yorumunuza cevap verdi", "Someone just replied to your comment on {postTitle}.": "Birisi {postTitle} yazısına yorumunuza cevap verdi.", "Subscription details": "Abonelik detayları", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "{siteTitle} sitesine kayıt işlemini tamamlamak için aşağıdaki bağlantıya tıkla ve otomatik olarak giriş yap:", "Thank you for signing up to {siteTitle}!": "{siteTitle} sitesine kayıt olduğun için teşekkürler!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} sitesine abone olduğun için teşekkürler!", diff --git a/ghost/i18n/locales/uk/ghost.json b/ghost/i18n/locales/uk/ghost.json index 591674ce52c..8d79b0b6644 100644 --- a/ghost/i18n/locales/uk/ghost.json +++ b/ghost/i18n/locales/uk/ghost.json @@ -65,6 +65,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Натисни посилання нижче, щоб завершити процес реєстрації на {siteTitle} і автоматично увійти:", "Thank you for signing up to {siteTitle}!": "Дякуємо за реєстрацію на {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Дякуємо за підписку на {siteTitle}!", diff --git a/ghost/i18n/locales/ur/ghost.json b/ghost/i18n/locales/ur/ghost.json index da306ebe9d9..c0307bbb059 100644 --- a/ghost/i18n/locales/ur/ghost.json +++ b/ghost/i18n/locales/ur/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "نیچے دیے گئے لنک پر ٹیپ کریں تاکہ {siteTitle} کے لئے رجسٹریشن کا عمل مکمل ہو اور آپ خود بخود سائن ان ہو جائیں:", "Thank you for signing up to {siteTitle}!": "{siteTitle} میں رجسٹر ہونے کا شکریہ!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} کو سبسکرائب کرنے کا شکریہ!", diff --git a/ghost/i18n/locales/uz/ghost.json b/ghost/i18n/locales/uz/ghost.json index 2fdfe59175e..522369c8a1d 100644 --- a/ghost/i18n/locales/uz/ghost.json +++ b/ghost/i18n/locales/uz/ghost.json @@ -61,6 +61,7 @@ "Someone just replied to your comment": "", "Someone just replied to your comment on {postTitle}.": "", "Subscription details": "", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "{siteTitle} uchun roʻyxatdan oʻtish jarayonini yakunlash va avtomatik ravishda tizimga kirish uchun quyidagi havolani bosing:", "Thank you for signing up to {siteTitle}!": "{siteTitle} uchun roʻyxatdan oʻtganingiz uchun tashakkur!", "Thank you for subscribing to {siteTitle}!": "{siteTitle} obunangiz uchun rahmat!", diff --git a/ghost/i18n/locales/vi/ghost.json b/ghost/i18n/locales/vi/ghost.json index 8935511d440..de41a371b9b 100644 --- a/ghost/i18n/locales/vi/ghost.json +++ b/ghost/i18n/locales/vi/ghost.json @@ -59,6 +59,7 @@ "Someone just replied to your comment": "Ai đó vừa phản hồi bình luận của bạn", "Someone just replied to your comment on {postTitle}.": "Ai đó vừa phản hồi bình luận của bạn trên {postTitle}.", "Subscription details": "Chi tiết gói thành viên", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "Nhấn vào liên kết bên dưới để hoàn tất quy trình đăng ký {siteTitle} và tự động đăng nhập:", "Thank you for signing up to {siteTitle}!": "Cám ơn bạn đã trở thành thành viên {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "Cám ơn bạn đã đăng ký thành viên {siteTitle}!", diff --git a/ghost/i18n/locales/zh-Hant/ghost.json b/ghost/i18n/locales/zh-Hant/ghost.json index e4e8d12fc03..247fe6aeea0 100644 --- a/ghost/i18n/locales/zh-Hant/ghost.json +++ b/ghost/i18n/locales/zh-Hant/ghost.json @@ -59,6 +59,7 @@ "Someone just replied to your comment": "有人剛剛回覆了您的留言", "Someone just replied to your comment on {postTitle}.": "有人剛剛在{postTitle}回覆了您的留言。", "Subscription details": "訂閱資訊", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "請點擊下面的連結以完成您在{siteTitle}的註冊,我們將為您自動登入:", "Thank you for signing up to {siteTitle}!": "感謝您註冊{siteTitle}!", "Thank you for subscribing to {siteTitle}!": "感謝您訂閱{siteTitle}!", diff --git a/ghost/i18n/locales/zh/ghost.json b/ghost/i18n/locales/zh/ghost.json index b32483caafe..79502da13eb 100644 --- a/ghost/i18n/locales/zh/ghost.json +++ b/ghost/i18n/locales/zh/ghost.json @@ -59,6 +59,7 @@ "Someone just replied to your comment": "有人刚刚回复了你的评论", "Someone just replied to your comment on {postTitle}.": "有人刚刚在{postTitle}回复了你的评论。", "Subscription details": "订阅详情", + "Support {siteTitle}": "", "Tap the link below to complete the signup process for {siteTitle}, and be automatically signed in:": "请点击下面的链接完成 {siteTitle} 的注册,并将自动登录:", "Thank you for signing up to {siteTitle}!": "感谢您注册 {siteTitle}!", "Thank you for subscribing to {siteTitle}!": "感谢您订阅 {siteTitle}!",