Updated donation success states

closes https://linear.app/tryghost/issue/PLG-152

- switched member success to a notification
- updated non-member success modal to include signup and signin links
This commit is contained in:
Kevin Ansfield 2024-08-27 19:18:35 +01:00
parent 2757ef70fa
commit f613f42bec
52 changed files with 236 additions and 168 deletions

View File

@ -106,6 +106,12 @@ const NotificationText = ({type, status, context}) => {
{t('Plan checkout was cancelled.')} {t('Plan checkout was cancelled.')}
</p> </p>
); );
} else if (type === 'support' && status === 'success') {
return (
<p>
{t('Thank you for your support!')}
</p>
);
} }
return ( return (
<p> <p>
@ -243,7 +249,7 @@ export default class Notification extends React.Component {
const {type, status, autoHide, duration} = this.state; const {type, status, autoHide, duration} = this.state;
if (type && status) { if (type && status) {
return ( return (
<Frame style={frameStyle} title="portal-notification" head={this.renderFrameStyles()} className='gh-portal-notification-iframe' > <Frame style={frameStyle} title="portal-notification" head={this.renderFrameStyles()} className='gh-portal-notification-iframe' data-testid="portal-notification-frame" >
<NotificationContent {...{type, status, autoHide, duration}} onHideNotification={e => this.onHideNotification(e)} /> <NotificationContent {...{type, status, autoHide, duration}} onHideNotification={e => this.onHideNotification(e)} />
</Frame> </Frame>
); );

View File

@ -8,13 +8,13 @@ const SupportPage = () => {
const [isLoading, setLoading] = useState(true); const [isLoading, setLoading] = useState(true);
const [error, setError] = useState(null); const [error, setError] = useState(null);
const [disabledFeatureError, setDisabledFeatureError] = useState(null); const [disabledFeatureError, setDisabledFeatureError] = useState(null);
const {t} = useContext(AppContext); const {member, t} = useContext(AppContext);
useEffect(() => { useEffect(() => {
async function checkoutDonation() { async function checkoutDonation() {
const siteUrl = window.location.origin; const siteUrl = window.location.origin;
const currentUrl = siteUrl + window.location.pathname; const currentUrl = siteUrl + window.location.pathname;
const successUrl = `${currentUrl}#/portal/support/success`; const successUrl = member ? `${currentUrl}?action=support&success=true` : `${currentUrl}/#/portal/support/success`;
const cancelUrl = currentUrl; const cancelUrl = currentUrl;
const api = setupGhostApi({siteUrl}); const api = setupGhostApi({siteUrl});

View File

@ -19,24 +19,25 @@ export const TipsAndDonationsSuccessStyle = `
`; `;
const SupportSuccess = () => { const SupportSuccess = () => {
const {onAction, brandColor, t} = useContext(AppContext); const {onAction, brandColor, site, t} = useContext(AppContext);
const successTitle = t('Thank you!'); const successTitle = t('Thank you for your support');
const successDescription = t('Your support means a lot.'); const successDescription = t('To continue to stay up to date, subscribe to {{publication}} below.', {publication: site?.title});
const buttonLabel = t('Close'); const buttonLabel = t('Sign up');
return ( return (
<div className='gh-portal-content gh-portal-tips-and-donations'> <div className='gh-portal-content gh-portal-tips-and-donations'>
<CloseButton /> <CloseButton />
<div className="gh-tips-and-donations-icon-success"> <div className="gh-tips-and-donations-icon-success">
<ConfettiIcon /> {site.icon ? <img src={site.icon} alt={site.title} /> : <ConfettiIcon />}
</div> </div>
<h1 className="gh-portal-main-title">{successTitle}</h1> <h1 className="gh-portal-main-title">{successTitle}</h1>
<p className="gh-portal-text-center">{successDescription}</p> <p className="gh-portal-text-center">{successDescription}</p>
<ActionButton <ActionButton
style={{width: '100%'}} style={{width: '100%'}}
retry={false} retry={false}
onClick = {() => onAction('closePopup')} onClick = {() => onAction('switchPage', {page: 'signup'})}
disabled={false} disabled={false}
brandColor={brandColor} brandColor={brandColor}
label={buttonLabel} label={buttonLabel}
@ -44,6 +45,18 @@ const SupportSuccess = () => {
tabindex='3' tabindex='3'
classes={'sticky bottom'} classes={'sticky bottom'}
/> />
<div className="gh-portal-signup-message">
<div>{t('Already a member?')}</div>
<button
data-test-button='signin-switch'
className='gh-portal-btn gh-portal-btn-link'
style={{color: brandColor}}
onClick={() => onAction('switchPage', {page: 'signin'})}
>
<span>{t('Sign in')}</span>
</button>
</div>
</div> </div>
); );
}; };

View File

@ -16,13 +16,15 @@ test.describe('Portal', () => {
await completeStripeSubscription(sharedPage); await completeStripeSubscription(sharedPage);
await sharedPage.pause(); await sharedPage.pause();
// Check success message // Check success modal
await sharedPage.waitForSelector('[data-testid="portal-popup-frame"]', {state: 'visible'}); await sharedPage.waitForSelector('[data-testid="portal-popup-frame"]', {state: 'visible'});
const portalFrame = sharedPage.frameLocator('[data-testid="portal-popup-frame"]'); const portalFrame = sharedPage.frameLocator('[data-testid="portal-popup-frame"]');
await expect(portalFrame.getByText('Thank you!')).toBeVisible(); await expect(portalFrame.getByText('Thank you for your support')).toBeVisible();
// Modal has working subscribe action
await portalFrame.getByText('Sign up').click();
await expect(portalFrame.locator('.gh-portal-signup')).toBeVisible();
}); });
// This test is broken because the impersonate is not working!
test('Can donate as a logged in free member', async ({sharedPage}) => { test('Can donate as a logged in free member', async ({sharedPage}) => {
// create a new free member // create a new free member
await createMember(sharedPage, { await createMember(sharedPage, {
@ -41,10 +43,10 @@ test.describe('Portal', () => {
await sharedPage.locator('#customUnitAmount').fill('12.50'); await sharedPage.locator('#customUnitAmount').fill('12.50');
await completeStripeSubscription(sharedPage); await completeStripeSubscription(sharedPage);
// Check success message // Check success notification
await sharedPage.waitForSelector('[data-testid="portal-popup-frame"]', {state: 'visible'}); const notificationFrame = sharedPage.frameLocator('[data-testid="portal-notification-frame"]');
const portalFrame = sharedPage.frameLocator('[data-testid="portal-popup-frame"]'); // todo: replace class locator on data-attr locator
await expect(portalFrame.getByText('Thank you!')).toBeVisible(); await expect(notificationFrame.locator('.gh-portal-notification.success')).toHaveCount(1);
}); });
test('Can donate with a fixed amount set and different currency', async ({sharedPage}) => { test('Can donate with a fixed amount set and different currency', async ({sharedPage}) => {
@ -73,7 +75,7 @@ test.describe('Portal', () => {
// Check success message // Check success message
await sharedPage.waitForSelector('[data-testid="portal-popup-frame"]', {state: 'visible'}); await sharedPage.waitForSelector('[data-testid="portal-popup-frame"]', {state: 'visible'});
const portalFrame = sharedPage.frameLocator('[data-testid="portal-popup-frame"]'); const portalFrame = sharedPage.frameLocator('[data-testid="portal-popup-frame"]');
await expect(portalFrame.getByText('Thank you!')).toBeVisible(); await expect(portalFrame.getByText('Thank you for your support')).toBeVisible();
}); });
}); });
}); });

View File

@ -120,8 +120,8 @@ test.describe('Portal', () => {
await portalFrame.locator('[data-test-button="unsubscribe-from-all-emails"]').click(); await portalFrame.locator('[data-test-button="unsubscribe-from-all-emails"]').click();
// todo: replace class locator on data-attr locator // todo: replace class locator on data-attr locator
await expect(await portalFrame.locator('.gh-portal-popupnotification.success')).toBeVisible(); await expect(portalFrame.locator('.gh-portal-popupnotification.success')).toBeVisible();
await expect(await portalFrame.locator('.gh-portal-popupnotification.success')).toBeHidden(); await expect(portalFrame.locator('.gh-portal-popupnotification.success')).toBeHidden();
// all newsletters should be disabled // all newsletters should be disabled
for (let i = 0; i < count; i++) { for (let i = 0; i < count; i++) {

View File

@ -44,8 +44,8 @@ test.describe('Portal', () => {
const portalFrameLocator = await sharedPage.frameLocator('[data-testid="portal-popup-frame"]'); const portalFrameLocator = await sharedPage.frameLocator('[data-testid="portal-popup-frame"]');
await portalFrameLocator.locator('.gh-portal-offer-title').waitFor(); await portalFrameLocator.locator('.gh-portal-offer-title').waitFor();
await expect(await portalFrameLocator.locator('.gh-portal-offer-title'), 'URL should open Portal with free-trial offer').toBeVisible(); await expect(portalFrameLocator.locator('.gh-portal-offer-title'), 'URL should open Portal with free-trial offer').toBeVisible();
await expect(await portalFrameLocator.getByRole('heading', {name: offerName}), 'URL should open Portal with free-trial offer').toBeVisible(); await expect(portalFrameLocator.getByRole('heading', {name: offerName}), 'URL should open Portal with free-trial offer').toBeVisible();
// fill member details and click start trial // fill member details and click start trial
await portalFrameLocator.locator('[data-test-input="input-name"]').fill('Testy McTesterson'); await portalFrameLocator.locator('[data-test-input="input-name"]').fill('Testy McTesterson');
@ -128,7 +128,7 @@ test.describe('Portal', () => {
await portalFrameLocator.locator('.gh-portal-offer-title').waitFor(); await portalFrameLocator.locator('.gh-portal-offer-title').waitFor();
// check offer title is visible on portal page // check offer title is visible on portal page
await expect(await portalFrameLocator.locator('.gh-portal-offer-title'), 'URL should open Portal with discount offer').toBeVisible(); await expect(portalFrameLocator.locator('.gh-portal-offer-title'), 'URL should open Portal with discount offer').toBeVisible();
// fill member details and continue // fill member details and continue
await portalFrameLocator.locator('#input-name').fill('Testy McTesterson'); await portalFrameLocator.locator('#input-name').fill('Testy McTesterson');
@ -147,7 +147,7 @@ test.describe('Portal', () => {
// wait for site to load and open portal // wait for site to load and open portal
await portalTriggerButton.click(); await portalTriggerButton.click();
// Discounted price should not be visible for member for one-time offers // Discounted price should not be visible for member for one-time offers
await expect(await portalFrameLocator.locator('text=$5.40/month'), 'Portal should not show discounted price').not.toBeVisible(); await expect(portalFrameLocator.locator('text=$5.40/month'), 'Portal should not show discounted price').not.toBeVisible();
// go to members list on admin // go to members list on admin
await sharedPage.goto('/ghost'); await sharedPage.goto('/ghost');
@ -202,9 +202,9 @@ test.describe('Portal', () => {
await portalFrameLocator.locator('.gh-portal-offer-title').waitFor(); await portalFrameLocator.locator('.gh-portal-offer-title').waitFor();
// check offer details are shown on portal page // check offer details are shown on portal page
await expect(await portalFrameLocator.locator('.gh-portal-offer-title'), 'URL should open Portal with discount offer').toBeVisible(); await expect(portalFrameLocator.locator('.gh-portal-offer-title'), 'URL should open Portal with discount offer').toBeVisible();
await expect(await portalFrameLocator.locator('text=10% off for first 3 months.'), 'URL should open Portal with discount offer').toBeVisible(); await expect(portalFrameLocator.locator('text=10% off for first 3 months.'), 'URL should open Portal with discount offer').toBeVisible();
await expect(await portalFrameLocator.locator('text=$5.40'), 'URL should open Portal with discount offer').toBeVisible(); await expect(portalFrameLocator.locator('text=$5.40'), 'URL should open Portal with discount offer').toBeVisible();
// fill member details and continue // fill member details and continue
await portalFrameLocator.locator('#input-name').fill('Testy McTesterson'); await portalFrameLocator.locator('#input-name').fill('Testy McTesterson');
@ -224,7 +224,7 @@ test.describe('Portal', () => {
await portalTriggerButton.click(); await portalTriggerButton.click();
// Discounted price should not be visible for member for one-time offers // Discounted price should not be visible for member for one-time offers
await expect(await portalFrameLocator.locator('text=$5.40/month'), 'Portal should show discounted price').toBeVisible(); await expect(portalFrameLocator.locator('text=$5.40/month'), 'Portal should show discounted price').toBeVisible();
await sharedPage.goto('/ghost'); await sharedPage.goto('/ghost');
await sharedPage.locator('.gh-nav a[href="#/members/"]').click(); await sharedPage.locator('.gh-nav a[href="#/members/"]').click();
@ -277,9 +277,9 @@ test.describe('Portal', () => {
await portalFrameLocator.locator('.gh-portal-offer-title').waitFor(); await portalFrameLocator.locator('.gh-portal-offer-title').waitFor();
// check offer details are shown on portal page // check offer details are shown on portal page
await expect(await portalFrameLocator.locator('.gh-portal-offer-title'), 'URL should open Portal with discount offer').toBeVisible(); await expect(portalFrameLocator.locator('.gh-portal-offer-title'), 'URL should open Portal with discount offer').toBeVisible();
await expect(await portalFrameLocator.locator('text=10% off forever.'), 'URL should open Portal with discount offer').toBeVisible(); await expect(portalFrameLocator.locator('text=10% off forever.'), 'URL should open Portal with discount offer').toBeVisible();
await expect(await portalFrameLocator.locator('text=$5.40'), 'URL should open Portal with discount offer').toBeVisible(); await expect(portalFrameLocator.locator('text=$5.40'), 'URL should open Portal with discount offer').toBeVisible();
// fill member details and continue // fill member details and continue
await portalFrameLocator.locator('#input-name').fill('Testy McTesterson'); await portalFrameLocator.locator('#input-name').fill('Testy McTesterson');

View File

@ -334,7 +334,7 @@ const fillInputIfExists = async (page, selector, value) => {
} }
}; };
const completeStripeSubscription = async (page) => { const completeStripeSubscription = async (page, {awaitNetworkIdle = true} = {}) => {
await page.locator('#cardNumber').fill('4242 4242 4242 4242'); await page.locator('#cardNumber').fill('4242 4242 4242 4242');
await page.locator('#cardExpiry').fill('04 / 26'); await page.locator('#cardExpiry').fill('04 / 26');
await page.locator('#cardCvc').fill('424'); await page.locator('#cardCvc').fill('424');
@ -359,7 +359,9 @@ const completeStripeSubscription = async (page) => {
await page.getByTestId('hosted-payment-submit-button').click(); await page.getByTestId('hosted-payment-submit-button').click();
await page.waitForLoadState('networkidle'); if (awaitNetworkIdle) {
await page.waitForLoadState('networkidle');
}
}; };
/** /**

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Sukses! U e-pos is opgedateer.", "Success! Your email is updated.": "Sukses! U e-pos is opgedateer.",
"Successfully unsubscribed": "Suksesvol afgemeld", "Successfully unsubscribed": "Suksesvol afgemeld",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Dankie dat jy ingeteken het. Voordat jy begin lees, hieronder is 'n paar ander webwerwe wat jy dalk sal geniet.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Dankie dat jy ingeteken het. Voordat jy begin lees, hieronder is 'n paar ander webwerwe wat jy dalk sal geniet.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Dankie vir die terugvoering!", "Thanks for the feedback!": "Dankie vir die terugvoering!",
"That didn't go to plan": "Dit het nie volgens plan verloop nie", "That didn't go to plan": "Dit het nie volgens plan verloop nie",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Die epos addres wat ons vir u het is {{memberEmail}} — as dit nie korrek is nie, kan u dit opdateer in u <button>rekeninginstellings area</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Die epos addres wat ons vir u het is {{memberEmail}} — as dit nie korrek is nie, kan u dit opdateer in u <button>rekeninginstellings area</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Hierdie webwerf is slegs op uitnodiging, kontak die eienaar vir toegang.", "This site is invite-only, contact the owner for access.": "Hierdie webwerf is slegs op uitnodiging, kontak die eienaar vir toegang.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Om die registrasie te voltooi, kliek op die bevestigingskakel in jou inboks. As dit nie binne 3 minute aankom nie, kontroleer asseblief jou spam-vouer!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Om die registrasie te voltooi, kliek op die bevestigingskakel in jou inboks. As dit nie binne 3 minute aankom nie, kontroleer asseblief jou spam-vouer!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Probeer gratis vir {{amount}} dae, dan {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Probeer gratis vir {{amount}} dae, dan {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Ontsluit toegang tot alle nuusbriewe deur 'n betaalde intekenaar te word.", "Unlock access to all newsletters by becoming a paid subscriber.": "Ontsluit toegang tot alle nuusbriewe deur 'n betaalde intekenaar te word.",
"Unsubscribe from all emails": "Meld af van alle e-posse", "Unsubscribe from all emails": "Meld af van alle e-posse",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "U insette help om te bepaal wat gepubliseer word.", "Your input helps shape what gets published.": "U insette help om te bepaal wat gepubliseer word.",
"Your subscription will expire on {{expiryDate}}": "U intekening sal verval op {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "U intekening sal verval op {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "U intekening sal hernu op {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "U intekening sal hernu op {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "U intekening sal begin op {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "U intekening sal begin op {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Чудесно! Вашият имейл е актуализиран.", "Success! Your email is updated.": "Чудесно! Вашият имейл е актуализиран.",
"Successfully unsubscribed": "Успешно разабониране", "Successfully unsubscribed": "Успешно разабониране",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Благодарим за изпратеният отзив!", "Thanks for the feedback!": "Благодарим за изпратеният отзив!",
"That didn't go to plan": "Нещо се обърка и не се случи както трябваше", "That didn't go to plan": "Нещо се обърка и не се случи както трябваше",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Имейлът, който имаме за вас, е {{memberEmail}} - ако не е верен, можете да го актуализирате в областта за <button>настройки на профила си</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Имейлът, който имаме за вас, е {{memberEmail}} - ако не е верен, можете да го актуализирате в областта за <button>настройки на профила си</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Сайтът е само с покани. Свържете се със собственика за да получите достъп.", "This site is invite-only, contact the owner for access.": "Сайтът е само с покани. Свържете се със собственика за да получите достъп.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "За да приключите регистрацията, последвайте препратката в съобщението, изпратено Ви по имейл. Ако не пристигне до 3 минути, проверете дали не е категоризирано като нежелано писмо.", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "За да приключите регистрацията, последвайте препратката в съобщението, изпратено Ви по имейл. Ако не пристигне до 3 минути, проверете дали не е категоризирано като нежелано писмо.",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Тествайте безплатно за {{amount}} дни, след това {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Тествайте безплатно за {{amount}} дни, след това {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Отключете достъпа до всички бюлетини, като станете платен абонат.", "Unlock access to all newsletters by becoming a paid subscriber.": "Отключете достъпа до всички бюлетини, като станете платен абонат.",
"Unsubscribe from all emails": "Прекрати изпращането на всякакви писма", "Unsubscribe from all emails": "Прекрати изпращането на всякакви писма",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Вашият принос помага да се оформи това, което се публикува.", "Your input helps shape what gets published.": "Вашият принос помага да се оформи това, което се публикува.",
"Your subscription will expire on {{expiryDate}}": "Абонаментът ви ще изтече на {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Абонаментът ви ще изтече на {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Абонаментът ви ще се поднови на {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Абонаментът ви ще се поднови на {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Абонаментът ви ще започне на {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Абонаментът ви ще започне на {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Uspjeh! Vaša Email adresa je promijenjena.", "Success! Your email is updated.": "Uspjeh! Vaša Email adresa je promijenjena.",
"Successfully unsubscribed": "Odjava uspješna", "Successfully unsubscribed": "Odjava uspješna",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Hvala na registraciji. Prije nego počneš čitati, u nastavku su slične stranice koje bi tebi mogle biti interesantne.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Hvala na registraciji. Prije nego počneš čitati, u nastavku su slične stranice koje bi tebi mogle biti interesantne.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Hvala na povratnim informacijama!", "Thanks for the feedback!": "Hvala na povratnim informacijama!",
"That didn't go to plan": "To nije pošlo prema planu", "That didn't go to plan": "To nije pošlo prema planu",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Email adresa koju smo spasili za tebe je {{memberEmail}} — ako to nije tačno, možeš je promijeniti u <button>postavkama računa</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Email adresa koju smo spasili za tebe je {{memberEmail}} — ako to nije tačno, možeš je promijeniti u <button>postavkama računa</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Ova je stranica samo na poziv, kontaktiraj vlasnika za pristup.", "This site is invite-only, contact the owner for access.": "Ova je stranica samo na poziv, kontaktiraj vlasnika za pristup.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Za nastavak procesa registracije, klikni na potvrdni link u svom inboxu. Ako ne stigne u roku od 3 minute, provjeri spam folder!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Za nastavak procesa registracije, klikni na potvrdni link u svom inboxu. Ako ne stigne u roku od 3 minute, provjeri spam folder!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Isprobaj besplatno {{amount}} dana, a zatim plati {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Isprobaj besplatno {{amount}} dana, a zatim plati {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Otključaj pristup svim newsletterima tako što ćete postati plaćeni član.", "Unlock access to all newsletters by becoming a paid subscriber.": "Otključaj pristup svim newsletterima tako što ćete postati plaćeni član.",
"Unsubscribe from all emails": "Odjava sa svih Email poruka", "Unsubscribe from all emails": "Odjava sa svih Email poruka",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Tvoj feedback pomaže pri odabiru tema koje se objavljuju.", "Your input helps shape what gets published.": "Tvoj feedback pomaže pri odabiru tema koje se objavljuju.",
"Your subscription will expire on {{expiryDate}}": "Tvoja pretplata istieče {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Tvoja pretplata istieče {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Tvoja pretplata će se obnoviti {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Tvoja pretplata će se obnoviti {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Tvoja pretplata će započeti {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Tvoja pretplata će započeti {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Amb èxit! El teu correu electrònic està actualitzat.", "Success! Your email is updated.": "Amb èxit! El teu correu electrònic està actualitzat.",
"Successfully unsubscribed": "T'has donat de baixa correctament", "Successfully unsubscribed": "T'has donat de baixa correctament",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Gràcies per subscriure't. Abans de començar a llegir, a continuació es mostren alguns altres llocs que us poden agradar.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Gràcies per subscriure't. Abans de començar a llegir, a continuació es mostren alguns altres llocs que us poden agradar.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Gràcies pels teus comentaris!", "Thanks for the feedback!": "Gràcies pels teus comentaris!",
"That didn't go to plan": "Això no ha anat com estava previst", "That didn't go to plan": "Això no ha anat com estava previst",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "'adreça electrònica que tenim per a vostè és {{memberEmail}}; si no és correcta, podeu actualitzar-la a l'<button>àrea de configuració del vostre compte</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "'adreça electrònica que tenim per a vostè és {{memberEmail}}; si no és correcta, podeu actualitzar-la a l'<button>àrea de configuració del vostre compte</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Aquest llog és només per invitació, contacta amb el propietari per obtenir accés.", "This site is invite-only, contact the owner for access.": "Aquest llog és només per invitació, contacta amb el propietari per obtenir accés.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Per completar el registre, fes clic sobre l'enllaç de confirmació al teu correu electrònic. Si no t'arria en 3 minuts, revisa la teva carpeta de correu brossa!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Per completar el registre, fes clic sobre l'enllaç de confirmació al teu correu electrònic. Si no t'arria en 3 minuts, revisa la teva carpeta de correu brossa!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Prova gratis durant {{amount}} dies i després {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Prova gratis durant {{amount}} dies i després {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Desbloqueja l'accés a tots els butlletins de notícies fent-te un subscriptor de pagament.", "Unlock access to all newsletters by becoming a paid subscriber.": "Desbloqueja l'accés a tots els butlletins de notícies fent-te un subscriptor de pagament.",
"Unsubscribe from all emails": "Cancel·la les subscripcions a tots els correus electrònics", "Unsubscribe from all emails": "Cancel·la les subscripcions a tots els correus electrònics",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "La teva opinió ajuda a definir el que es publica.", "Your input helps shape what gets published.": "La teva opinió ajuda a definir el que es publica.",
"Your subscription will expire on {{expiryDate}}": "La vostra subscripció caducarà el {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "La vostra subscripció caducarà el {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "La vostra subscripció es renovarà el {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "La vostra subscripció es renovarà el {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "La vostra subscripció començarà el {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "La vostra subscripció començarà el {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -187,7 +187,8 @@
"Thank you for subscribing to {{siteTitle}}.": "A success message, confirming that a member has 'subscribed' to a newsletter", "Thank you for subscribing to {{siteTitle}}.": "A success message, confirming that a member has 'subscribed' to a newsletter",
"Thank you for subscribing to {{siteTitle}}. Tap the link below to be automatically signed in:": "A confirmation message, confirming that a member has 'subscribed' to a newsletter, and needs to click a button to continue.", "Thank you for subscribing to {{siteTitle}}. Tap the link below to be automatically signed in:": "A confirmation message, confirming that a member has 'subscribed' to a newsletter, and needs to click a button to continue.",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Subscription cofirmation message with notice of recommended sites", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Subscription cofirmation message with notice of recommended sites",
"Thank you!": "", "Thank you for your support": "A success message, shown in a modal after a non-member has made a tip or donation",
"Thank you for your support!": "A success message, shown in a notification after a member has made a tip or donation",
"Thanks for the feedback!": "A confirmation message after submitting member feedback", "Thanks for the feedback!": "A confirmation message after submitting member feedback",
"That didn't go to plan": "An error message indicating something went wrong", "That didn't go to plan": "An error message indicating something went wrong",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Message confirming the user's email is correct, with a button linking to the account settings page", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Message confirming the user's email is correct, with a button linking to the account settings page",
@ -197,8 +198,9 @@
"This comment has been removed.": "Text for a comment thas was removed", "This comment has been removed.": "Text for a comment thas was removed",
"This email address will not be used.": "This is in the footer of signup verification emails, and comes right after 'If you did not make this request, you can simply delete this message.'", "This email address will not be used.": "This is in the footer of signup verification emails, and comes right after 'If you did not make this request, you can simply delete this message.'",
"This site is invite-only, contact the owner for access.": "A message on the member login screen indicating that a site is not-open to public signups", "This site is invite-only, contact the owner for access.": "A message on the member login screen indicating that a site is not-open to public signups",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "An error message shown when a tips or donations link is opened but the site has donations disabled",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "A confirmation message displayed during the signup process, indicating that the person signing up needs to go and check their email - and reminding them to check their spam folder, too", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "A confirmation message displayed during the signup process, indicating that the person signing up needs to go and check their email - and reminding them to check their spam folder, too",
"To continue to stay up to date, subscribe to {{publication}} below.": "A message shown in the success modal after a non-member has made a tip or donation",
"Try free for {{amount}} days, then {{originalPrice}}.": "A label for an offer with a free trial", "Try free for {{amount}} days, then {{originalPrice}}.": "A label for an offer with a free trial",
"Unlock access to all newsletters by becoming a paid subscriber.": "A message to encourage members to upgrade to a paid subscription", "Unlock access to all newsletters by becoming a paid subscriber.": "A message to encourage members to upgrade to a paid subscription",
"Unsubscribe from all emails": "A button on the unsubscribe page, offering a shortcut to unsubscribe from every newsletter at the same time", "Unsubscribe from all emails": "A button on the unsubscribe page, offering a shortcut to unsubscribe from every newsletter at the same time",
@ -241,7 +243,6 @@
"Your subscription will expire on {{expiryDate}}": "A message indicating when the member's subscription will expire", "Your subscription will expire on {{expiryDate}}": "A message indicating when the member's subscription will expire",
"Your subscription will renew on {{renewalDate}}": "A message indicating when the member's subscription will be renewed", "Your subscription will renew on {{renewalDate}}": "A message indicating when the member's subscription will be renewed",
"Your subscription will start on {{subscriptionStart}}": "A message for trial users indicating when their subscription will start", "Your subscription will start on {{subscriptionStart}}": "A message for trial users indicating when their subscription will start",
"Your support means a lot.": "",
"{{amount}} characters left": "Characters left, shown above the input field, when editing your expertise in the comments app", "{{amount}} characters left": "Characters left, shown above the input field, when editing your expertise in the comments app",
"{{amount}} comments": "Amount of comments on a post", "{{amount}} comments": "Amount of comments on a post",
"{{amount}} days ago": "Time a comment was placed", "{{amount}} days ago": "Time a comment was placed",
@ -262,4 +263,4 @@
"{{memberEmail}} will no longer receive this newsletter.": "A message shown when a user unsubscribes from a newsletter", "{{memberEmail}} will no longer receive this newsletter.": "A message shown when a user unsubscribes from a newsletter",
"{{memberEmail}} will no longer receive {{newsletterName}} newsletter.": "A message shown when a user unsubscribes from a newsletter", "{{memberEmail}} will no longer receive {{newsletterName}} newsletter.": "A message shown when a user unsubscribes from a newsletter",
"{{trialDays}} days free": "A label for free trial days" "{{trialDays}} days free": "A label for free trial days"
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "Úspěšné odhlášení", "Successfully unsubscribed": "Úspěšné odhlášení",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Děkujeme za zpětnou vazbu!", "Thanks for the feedback!": "Děkujeme za zpětnou vazbu!",
"That didn't go to plan": "Něco se nepovedlo", "That didn't go to plan": "Něco se nepovedlo",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Tento web je pouze pro pozvané, kontaktujte provozovatele pro přístup.", "This site is invite-only, contact the owner for access.": "Tento web je pouze pro pozvané, kontaktujte provozovatele pro přístup.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Pro dokončení registrace klikněte na potvrzovací odkaz ve vaší e-mailové schránce. Pokud nepřijde do 3 minut, zkontrolujte prosím složku nevyžádaných zpráv (spam)!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Pro dokončení registrace klikněte na potvrzovací odkaz ve vaší e-mailové schránce. Pokud nepřijde do 3 minut, zkontrolujte prosím složku nevyžádaných zpráv (spam)!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Odhlásit se od všech e-mailů", "Unsubscribe from all emails": "Odhlásit se od všech e-mailů",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Vaše připomínky pomáhají spoluvytvářet obsah webu.", "Your input helps shape what gets published.": "Vaše připomínky pomáhají spoluvytvářet obsah webu.",
"Your subscription will expire on {{expiryDate}}": "", "Your subscription will expire on {{expiryDate}}": "",
"Your subscription will renew on {{renewalDate}}": "", "Your subscription will renew on {{renewalDate}}": "",
"Your subscription will start on {{subscriptionStart}}": "", "Your subscription will start on {{subscriptionStart}}": ""
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Sådan! Din e-mail er opdateret.", "Success! Your email is updated.": "Sådan! Din e-mail er opdateret.",
"Successfully unsubscribed": "Du er nu afmeldt", "Successfully unsubscribed": "Du er nu afmeldt",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Tak for din tilmelding. Før du begynder at læse, er her et par andre sider du måske vil synes om.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Tak for din tilmelding. Før du begynder at læse, er her et par andre sider du måske vil synes om.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Tak for din feedback!", "Thanks for the feedback!": "Tak for din feedback!",
"That didn't go to plan": "Det gik ikke helt efter planen", "That didn't go to plan": "Det gik ikke helt efter planen",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Den e-mailadresse, vi har på dig, er {{memberEmail}} hvis det ikke er korrekt, kan du opdatere den i dit <button>kontoindstillingsområde</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Den e-mailadresse, vi har på dig, er {{memberEmail}} hvis det ikke er korrekt, kan du opdatere den i dit <button>kontoindstillingsområde</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Denne sider kræver at du skal være inviteret. Kontakt ejeres for at få adgang.", "This site is invite-only, contact the owner for access.": "Denne sider kræver at du skal være inviteret. Kontakt ejeres for at få adgang.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "For at gennemføre oprettelsen af din konto, skal du klikke på bekræftelseslinket i din e-mail indbakke. Hvis det ikke kommer indenfor 3 minutter, så tjek venligst din spam mappe!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "For at gennemføre oprettelsen af din konto, skal du klikke på bekræftelseslinket i din e-mail indbakke. Hvis det ikke kommer indenfor 3 minutter, så tjek venligst din spam mappe!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Prøv gratis i {{amount}} dage, derefter {{original Price}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Prøv gratis i {{amount}} dage, derefter {{original Price}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Lås op for adgang til alle nyhedsbreve ved at blive en betalingsabonnent.", "Unlock access to all newsletters by becoming a paid subscriber.": "Lås op for adgang til alle nyhedsbreve ved at blive en betalingsabonnent.",
"Unsubscribe from all emails": "Afmeld alle e-mails", "Unsubscribe from all emails": "Afmeld alle e-mails",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Dit input hjælper med at forme det der bliver publiceret.", "Your input helps shape what gets published.": "Dit input hjælper med at forme det der bliver publiceret.",
"Your subscription will expire on {{expiryDate}}": "Dit abonnement udløber {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Dit abonnement udløber {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Dit abonnement fornyes {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Dit abonnement fornyes {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Dit abonnement starter {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Dit abonnement starter {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Super! Deine E-Mail wurde erfolgreich aktualisiert.", "Success! Your email is updated.": "Super! Deine E-Mail wurde erfolgreich aktualisiert.",
"Successfully unsubscribed": "Erfolgreich abgemeldet", "Successfully unsubscribed": "Erfolgreich abgemeldet",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Danke für das Feedback!", "Thanks for the feedback!": "Danke für das Feedback!",
"That didn't go to plan": "Das ist nicht nach Plan verlaufen", "That didn't go to plan": "Das ist nicht nach Plan verlaufen",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Die E-Mail-Adresse, die wir von dir haben, lautet {{memberEmail}} - wenn das nicht korrekt ist, kannst du sie in deinem <button>Kontoeinstellungen</button> aktualisieren.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Die E-Mail-Adresse, die wir von dir haben, lautet {{memberEmail}} - wenn das nicht korrekt ist, kannst du sie in deinem <button>Kontoeinstellungen</button> aktualisieren.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Diese Seite benötigt eine Einladung. Bitte kontaktiere den Inhaber.", "This site is invite-only, contact the owner for access.": "Diese Seite benötigt eine Einladung. Bitte kontaktiere den Inhaber.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Um deine Registrierung abzuschließen, klicke auf den Bestätigungslink in deinem Posteingang. Falls die E-Mail nicht innerhalb von 3 Minuten ankommt, überprüfe bitte deinen Spam-Ordner!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Um deine Registrierung abzuschließen, klicke auf den Bestätigungslink in deinem Posteingang. Falls die E-Mail nicht innerhalb von 3 Minuten ankommt, überprüfe bitte deinen Spam-Ordner!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Kostenfreier Testzugang für {{amount}} Tage, danach {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Kostenfreier Testzugang für {{amount}} Tage, danach {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Schalte den Zugang zu allen Newslettern frei, indem du ein zahlender Abonnent wirst.", "Unlock access to all newsletters by becoming a paid subscriber.": "Schalte den Zugang zu allen Newslettern frei, indem du ein zahlender Abonnent wirst.",
"Unsubscribe from all emails": "Von allen E-Mails abmelden", "Unsubscribe from all emails": "Von allen E-Mails abmelden",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Dein Beitrag trägt dazu bei, was veröffentlicht wird.", "Your input helps shape what gets published.": "Dein Beitrag trägt dazu bei, was veröffentlicht wird.",
"Your subscription will expire on {{expiryDate}}": "Dein Abonnement wird am {{expiryDate}} ablaufen.", "Your subscription will expire on {{expiryDate}}": "Dein Abonnement wird am {{expiryDate}} ablaufen.",
"Your subscription will renew on {{renewalDate}}": "Dein Abonnement wird am {{renewalDate}} erneuert.", "Your subscription will renew on {{renewalDate}}": "Dein Abonnement wird am {{renewalDate}} erneuert.",
"Your subscription will start on {{subscriptionStart}}": "Dein Abonnement started am {{subscriptionStart}}.", "Your subscription will start on {{subscriptionStart}}": "Dein Abonnement started am {{subscriptionStart}}."
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "", "Successfully unsubscribed": "",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "", "Thanks for the feedback!": "",
"That didn't go to plan": "", "That didn't go to plan": "",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "", "This site is invite-only, contact the owner for access.": "",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "", "Unsubscribe from all emails": "",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "", "Your input helps shape what gets published.": "",
"Your subscription will expire on {{expiryDate}}": "", "Your subscription will expire on {{expiryDate}}": "",
"Your subscription will renew on {{renewalDate}}": "", "Your subscription will renew on {{renewalDate}}": "",
"Your subscription will start on {{subscriptionStart}}": "", "Your subscription will start on {{subscriptionStart}}": ""
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "Sukcese malabonita", "Successfully unsubscribed": "Sukcese malabonita",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Dankon pro la rimarkoj!", "Thanks for the feedback!": "Dankon pro la rimarkoj!",
"That didn't go to plan": "Tio ne iris laŭ la intenco", "That didn't go to plan": "Tio ne iris laŭ la intenco",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Ĉi tiu retejo estas nur por invitiĝuloj, kontaktu la proprietulo por alireblo.", "This site is invite-only, contact the owner for access.": "Ĉi tiu retejo estas nur por invitiĝuloj, kontaktu la proprietulo por alireblo.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Por kompletigi aliĝon, premu la konfirman ligilon en via enirkesto. Se ĝi ne alvenas ene de 3 minutoj, kontrolu vian trudmesaĝdosieron!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Por kompletigi aliĝon, premu la konfirman ligilon en via enirkesto. Se ĝi ne alvenas ene de 3 minutoj, kontrolu vian trudmesaĝdosieron!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Malabonu de ĉiuj retpoŝtoj", "Unsubscribe from all emails": "Malabonu de ĉiuj retpoŝtoj",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Via enigo helpas formi kio estas aperigita.", "Your input helps shape what gets published.": "Via enigo helpas formi kio estas aperigita.",
"Your subscription will expire on {{expiryDate}}": "", "Your subscription will expire on {{expiryDate}}": "",
"Your subscription will renew on {{renewalDate}}": "", "Your subscription will renew on {{renewalDate}}": "",
"Your subscription will start on {{subscriptionStart}}": "", "Your subscription will start on {{subscriptionStart}}": ""
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "¡Éxito! Tu correo electrónico está actualizado.", "Success! Your email is updated.": "¡Éxito! Tu correo electrónico está actualizado.",
"Successfully unsubscribed": "Te has dado de baja correctamente", "Successfully unsubscribed": "Te has dado de baja correctamente",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Gracias por suscribirte. Antes de leer, aquí abajo hay otros sitios que te pueden gustar.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Gracias por suscribirte. Antes de leer, aquí abajo hay otros sitios que te pueden gustar.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "¡Gracias por tus comentarios!", "Thanks for the feedback!": "¡Gracias por tus comentarios!",
"That didn't go to plan": "Eso no salió según lo planeado", "That didn't go to plan": "Eso no salió según lo planeado",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "La dirección de correo electrónico que tenemos para ti es {{memberEmail}} — si no es correcta, puedes actualizarla en tu <button>área de configuración de la cuenta</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "La dirección de correo electrónico que tenemos para ti es {{memberEmail}} — si no es correcta, puedes actualizarla en tu <button>área de configuración de la cuenta</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Este sitio es solo por invitación, contacta al propietario para obtener acceso.", "This site is invite-only, contact the owner for access.": "Este sitio es solo por invitación, contacta al propietario para obtener acceso.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Para completar el registro, haz clic en el enlace de confirmación en tu correo electrónico. Si no llega en 3 minutos, ¡revisa tu carpeta de spam!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Para completar el registro, haz clic en el enlace de confirmación en tu correo electrónico. Si no llega en 3 minutos, ¡revisa tu carpeta de spam!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Prueba gratis por {{amount}} dias, luego {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Prueba gratis por {{amount}} dias, luego {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Desbloquea el acceso a todos los boletines convirtiéndote en un suscriptor pago.", "Unlock access to all newsletters by becoming a paid subscriber.": "Desbloquea el acceso a todos los boletines convirtiéndote en un suscriptor pago.",
"Unsubscribe from all emails": "Cancelar suscripción a todos los correos electrónicos", "Unsubscribe from all emails": "Cancelar suscripción a todos los correos electrónicos",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Tu opinión ayuda a definir lo que se publica.", "Your input helps shape what gets published.": "Tu opinión ayuda a definir lo que se publica.",
"Your subscription will expire on {{expiryDate}}": "Tu suscripción caducará el {{expiryDate}} ", "Your subscription will expire on {{expiryDate}}": "Tu suscripción caducará el {{expiryDate}} ",
"Your subscription will renew on {{renewalDate}}": "Tu suscripción se renovará el {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Tu suscripción se renovará el {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Tu suscripción comenzará el {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Tu suscripción comenzará el {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "انجام شد! ایمیل شما به روز شد.", "Success! Your email is updated.": "انجام شد! ایمیل شما به روز شد.",
"Successfully unsubscribed": "لغو اشتراک با موفقیت انجام شد", "Successfully unsubscribed": "لغو اشتراک با موفقیت انجام شد",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "با سپاس از اشتراک شما. پیش از این که شروع به خواندن کنید چند وب\u200cسایت دیگر که ممکن است آن\u200cها را بپسندید در زیر برای شما قرار گرفته\u200cاند.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "با سپاس از اشتراک شما. پیش از این که شروع به خواندن کنید چند وب\u200cسایت دیگر که ممکن است آن\u200cها را بپسندید در زیر برای شما قرار گرفته\u200cاند.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "با سپاس از بازخورد شما!", "Thanks for the feedback!": "با سپاس از بازخورد شما!",
"That didn't go to plan": "کار به درستی پیش نرفت", "That didn't go to plan": "کار به درستی پیش نرفت",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "آدرس ایمیلی که ما از شما داریم {{memberEmail}} است - اگر که این آدرس درست نیست می\u200cتوانید در <button>قسمت تنظیمات حساب کاربری</button> آن را به\u200cروز کنید.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "آدرس ایمیلی که ما از شما داریم {{memberEmail}} است - اگر که این آدرس درست نیست می\u200cتوانید در <button>قسمت تنظیمات حساب کاربری</button> آن را به\u200cروز کنید.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "دسترسی به این وب\u200cسایت نیازمند دعوت\u200cنامه است، با مالک آن برای دریافت دسترسی تماس بگیرید.", "This site is invite-only, contact the owner for access.": "دسترسی به این وب\u200cسایت نیازمند دعوت\u200cنامه است، با مالک آن برای دریافت دسترسی تماس بگیرید.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "برای تکمیل ثبت نام، برروی پیوند تأیید در صندوق ورودی ایمیل خود کلیک کنید. در صورتی که به دست شما نرسید، پوشه اسپم خود را برررسی کنید!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "برای تکمیل ثبت نام، برروی پیوند تأیید در صندوق ورودی ایمیل خود کلیک کنید. در صورتی که به دست شما نرسید، پوشه اسپم خود را برررسی کنید!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "برای {{amount}} روز به صورت رایگان امتحان کنید، سپس با قیمت {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "برای {{amount}} روز به صورت رایگان امتحان کنید، سپس با قیمت {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "با دریافت اشتراک پولی به شما دسترسی به تمامی خبرنامه\u200cها داده می\u200cشود.", "Unlock access to all newsletters by becoming a paid subscriber.": "با دریافت اشتراک پولی به شما دسترسی به تمامی خبرنامه\u200cها داده می\u200cشود.",
"Unsubscribe from all emails": "لغو اشتراک دریافت تمامی ایمیل\u200cها", "Unsubscribe from all emails": "لغو اشتراک دریافت تمامی ایمیل\u200cها",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "تلاش شما به آنچه که منتشر می\u200cشود، شکل می\u200cدهد.", "Your input helps shape what gets published.": "تلاش شما به آنچه که منتشر می\u200cشود، شکل می\u200cدهد.",
"Your subscription will expire on {{expiryDate}}": "اشتراک شما در تاریخ {{expiryDate}} منقضی می\u200cشود", "Your subscription will expire on {{expiryDate}}": "اشتراک شما در تاریخ {{expiryDate}} منقضی می\u200cشود",
"Your subscription will renew on {{renewalDate}}": "اشتراک شما در تاریخ {{renewalDate}} تمدید می\u200cشود", "Your subscription will renew on {{renewalDate}}": "اشتراک شما در تاریخ {{renewalDate}} تمدید می\u200cشود",
"Your subscription will start on {{subscriptionStart}}": "اشتراک شما از تاریخ {{subscriptionStart}} شروع می\u200cشود", "Your subscription will start on {{subscriptionStart}}": "اشتراک شما از تاریخ {{subscriptionStart}} شروع می\u200cشود"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Onnistui! Sähköpostisi on päivitetty", "Success! Your email is updated.": "Onnistui! Sähköpostisi on päivitetty",
"Successfully unsubscribed": "Tilauksen peruutus onnistui", "Successfully unsubscribed": "Tilauksen peruutus onnistui",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Kiitos palautteestasi!", "Thanks for the feedback!": "Kiitos palautteestasi!",
"That didn't go to plan": "Tämä ei mennyt suunnitelmien mukaan", "That didn't go to plan": "Tämä ei mennyt suunnitelmien mukaan",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Tämä sivu on vain kutsutuille, ota yhteyttä omistajaan saadaksesi pääsyoikeuden.", "This site is invite-only, contact the owner for access.": "Tämä sivu on vain kutsutuille, ota yhteyttä omistajaan saadaksesi pääsyoikeuden.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Viimeistelläksesi rekisteröitymisen, klikkaa vahvistuslinkkiä sähköpostissasi. Jos sitä ei saavu 3 minuutin kuluessa, tarkista roskapostikansiosi!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Viimeistelläksesi rekisteröitymisen, klikkaa vahvistuslinkkiä sähköpostissasi. Jos sitä ei saavu 3 minuutin kuluessa, tarkista roskapostikansiosi!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Kokeile ilmaiseksi {{amount}} päivää, sen jälkeen hinta on {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Kokeile ilmaiseksi {{amount}} päivää, sen jälkeen hinta on {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Avaa pääsy kaikkiin uutiskirjeisiin maksullisella tilauksella.", "Unlock access to all newsletters by becoming a paid subscriber.": "Avaa pääsy kaikkiin uutiskirjeisiin maksullisella tilauksella.",
"Unsubscribe from all emails": "Peruuta kaikki sähköpostit", "Unsubscribe from all emails": "Peruuta kaikki sähköpostit",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Antamasi palautteen avulla muokataan julkaistavaa sisältöä", "Your input helps shape what gets published.": "Antamasi palautteen avulla muokataan julkaistavaa sisältöä",
"Your subscription will expire on {{expiryDate}}": "Tilauksesi päättyy {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Tilauksesi päättyy {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Tilauksesi uusiutuu {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Tilauksesi uusiutuu {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Tilauksesi alkaa {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Tilauksesi alkaa {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Votre adresse email a bien été mise à jour.", "Success! Your email is updated.": "Votre adresse email a bien été mise à jour.",
"Successfully unsubscribed": "Désabonnement réussi", "Successfully unsubscribed": "Désabonnement réussi",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Merci pour votre abonnement. Avant de commencer à lire, voici quelques sites qui pourraient vous intéresser.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Merci pour votre abonnement. Avant de commencer à lire, voici quelques sites qui pourraient vous intéresser.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Merci pour votre avis !", "Thanks for the feedback!": "Merci pour votre avis !",
"That didn't go to plan": "Cela na pas fonctionné comme prévu", "That didn't go to plan": "Cela na pas fonctionné comme prévu",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "L'adresse email qui nous a été indiquée est {{memberEmail}} — Si celle-ci est incorrecte, vous pourrez la modifier dans <button>Paramètres de compte</button>", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "L'adresse email qui nous a été indiquée est {{memberEmail}} — Si celle-ci est incorrecte, vous pourrez la modifier dans <button>Paramètres de compte</button>",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Ce site est réservé aux invités. Veuillez écrire au propriétaire pour en demander l'accès.", "This site is invite-only, contact the owner for access.": "Ce site est réservé aux invités. Veuillez écrire au propriétaire pour en demander l'accès.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Pour confirmer votre inscription, veuillez cliquer le lien de confirmation dans l'email que vous allez recevoir. Sil ne vous parvient pas dans les 3 minutes, vérifiez votre dossier d'indésirables.", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Pour confirmer votre inscription, veuillez cliquer le lien de confirmation dans l'email que vous allez recevoir. Sil ne vous parvient pas dans les 3 minutes, vérifiez votre dossier d'indésirables.",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Essayez gratuitement pendant {{amount}} jours, puis {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Essayez gratuitement pendant {{amount}} jours, puis {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Débloquez l'accès à toutes les newsletters en souscrivant un abonnement payant.", "Unlock access to all newsletters by becoming a paid subscriber.": "Débloquez l'accès à toutes les newsletters en souscrivant un abonnement payant.",
"Unsubscribe from all emails": "Se désabonner de tous les emails", "Unsubscribe from all emails": "Se désabonner de tous les emails",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Votre avis aide à améliorer ce qui est publié.", "Your input helps shape what gets published.": "Votre avis aide à améliorer ce qui est publié.",
"Your subscription will expire on {{expiryDate}}": "Votre abonnement expirera le {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Votre abonnement expirera le {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Votre abonnement sera renouvelé le {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Votre abonnement sera renouvelé le {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Votre abonnement débutera le {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Votre abonnement débutera le {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Dèanta! Chaidh am post-d agad ùrachadh.", "Success! Your email is updated.": "Dèanta! Chaidh am post-d agad ùrachadh.",
"Successfully unsubscribed": "Chan eil thu a fo-sgrìobhadh tuilleadh.", "Successfully unsubscribed": "Chan eil thu a fo-sgrìobhadh tuilleadh.",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Tapadh leat airson fo-sgrìobhadh. Tha grunn làraich eil gu h-ìosal a dhfhaodadh a bhith còrdadh riut.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Tapadh leat airson fo-sgrìobhadh. Tha grunn làraich eil gu h-ìosal a dhfhaodadh a bhith còrdadh riut.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Mòran taing airson leigeil fios.", "Thanks for the feedback!": "Mòran taing airson leigeil fios.",
"That didn't go to plan": "Cha deach sin mar bu chòir", "That didn't go to plan": "Cha deach sin mar bu chòir",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "S e {{memberEmaill}} am post-d a th againn dhut - faodaidh tu a cheartachadh anns na <button>roghainnean</button> agad.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "S e {{memberEmaill}} am post-d a th againn dhut - faodaidh tu a cheartachadh anns na <button>roghainnean</button> agad.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Feumar cuireadh airson an làrach-lìn seo, leig fios dhan rianaire ma tha thu ag iarraidh cothrom-inntrigidh.", "This site is invite-only, contact the owner for access.": "Feumar cuireadh airson an làrach-lìn seo, leig fios dhan rianaire ma tha thu ag iarraidh cothrom-inntrigidh.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Dèan briog air a cheangal dearbhaidh a chaidh a chur dhan phost-d agad gus crìoch a chur an an clàradh agad. Thoir sùil air a phasgan spama mura faigh thu taobh a-staigh 3 mionaidean e.", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Dèan briog air a cheangal dearbhaidh a chaidh a chur dhan phost-d agad gus crìoch a chur an an clàradh agad. Thoir sùil air a phasgan spama mura faigh thu taobh a-staigh 3 mionaidean e.",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "An-asgaidh airson {{amount}}l, agus {{originalPrice}} an dèidh sin ", "Try free for {{amount}} days, then {{originalPrice}}.": "An-asgaidh airson {{amount}}l, agus {{originalPrice}} an dèidh sin ",
"Unlock access to all newsletters by becoming a paid subscriber.": "Tig nad bhall phaighte gus cothrom fhaighinn air na cuairt-litrichean gu lèir.", "Unlock access to all newsletters by becoming a paid subscriber.": "Tig nad bhall phaighte gus cothrom fhaighinn air na cuairt-litrichean gu lèir.",
"Unsubscribe from all emails": "Na fo-sgrìobh ri puist-d tuilleadh", "Unsubscribe from all emails": "Na fo-sgrìobh ri puist-d tuilleadh",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Bheir na beachdan agad buaidh air na foillseachaidhean ri teachd.", "Your input helps shape what gets published.": "Bheir na beachdan agad buaidh air na foillseachaidhean ri teachd.",
"Your subscription will expire on {{expiryDate}}": "Falbhaidh an ùine air am fo-sgrìobhadh agad: {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Falbhaidh an ùine air am fo-sgrìobhadh agad: {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Ath-nuadhaichidh am fo-sgrìobhadh agad: {{expiryDate}}", "Your subscription will renew on {{renewalDate}}": "Ath-nuadhaichidh am fo-sgrìobhadh agad: {{expiryDate}}",
"Your subscription will start on {{subscriptionStart}}": "Tòisichidh am fo-sgrìobhadh agad: {{expiryDate}}", "Your subscription will start on {{subscriptionStart}}": "Tòisichidh am fo-sgrìobhadh agad: {{expiryDate}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Uspjeh! Vaš račun e-pošte je ažuriran.", "Success! Your email is updated.": "Uspjeh! Vaš račun e-pošte je ažuriran.",
"Successfully unsubscribed": "Uspješna odjava", "Successfully unsubscribed": "Uspješna odjava",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Hvala na povratnim informacijama!", "Thanks for the feedback!": "Hvala na povratnim informacijama!",
"That didn't go to plan": "Nešto je pošlo po zlu", "That didn't go to plan": "Nešto je pošlo po zlu",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Adresa e-pošte vašeg računa je {{memberEmail}} - ako to nije točno, možete ga ažurirati u <button>postavkama računa</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Adresa e-pošte vašeg računa je {{memberEmail}} - ako to nije točno, možete ga ažurirati u <button>postavkama računa</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Ove stranice su samo za članove, kontaktirajte vlasnika kako biste dobili pristup.", "This site is invite-only, contact the owner for access.": "Ove stranice su samo za članove, kontaktirajte vlasnika kako biste dobili pristup.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Kliknite na link za završetak registracije. Ako poruku niste dobili za 3 minute, provjerite spam folder!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Kliknite na link za završetak registracije. Ako poruku niste dobili za 3 minute, provjerite spam folder!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Probajte besplatno na {{amount}} dana, zatim {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Probajte besplatno na {{amount}} dana, zatim {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Otključajte pristup svim newsletterima plaćanjem pretplate.", "Unlock access to all newsletters by becoming a paid subscriber.": "Otključajte pristup svim newsletterima plaćanjem pretplate.",
"Unsubscribe from all emails": "Otkažite primanje svih poruka e-poštom", "Unsubscribe from all emails": "Otkažite primanje svih poruka e-poštom",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Vaš doprinos pomaže u oblikovanju sadržaja kojeg objavljujemo.", "Your input helps shape what gets published.": "Vaš doprinos pomaže u oblikovanju sadržaja kojeg objavljujemo.",
"Your subscription will expire on {{expiryDate}}": "Vaša pretplata istječe {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Vaša pretplata istječe {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Vaša pretplata će se obnoviti {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Vaša pretplata će se obnoviti {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Vaša pretplata će početi {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Vaša pretplata će početi {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Siker! Az email-jét frissítettük.", "Success! Your email is updated.": "Siker! Az email-jét frissítettük.",
"Successfully unsubscribed": "Sikeres leiratkozás", "Successfully unsubscribed": "Sikeres leiratkozás",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Köszönjük a visszajelzést", "Thanks for the feedback!": "Köszönjük a visszajelzést",
"That didn't go to plan": "Hiba történt", "That didn't go to plan": "Hiba történt",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Az Ön nálunk regisztrált e-mail címe: {{memberEmail}} — ha ez nem helyes, frissítheti a fiókbeállításoknál.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Az Ön nálunk regisztrált e-mail címe: {{memberEmail}} — ha ez nem helyes, frissítheti a fiókbeállításoknál.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "A website csak meghívóval látogatható. Meghívóért lépjen kapcsolatba az oldal tulajdonosával!", "This site is invite-only, contact the owner for access.": "A website csak meghívóval látogatható. Meghívóért lépjen kapcsolatba az oldal tulajdonosával!",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "A regisztráció befejezéséhez kérjük kattintson az email-ben kapott linkre. Ha a link nem érkezne meg 3 percen belül kérjük ellenőrizze a spam mappát.", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "A regisztráció befejezéséhez kérjük kattintson az email-ben kapott linkre. Ha a link nem érkezne meg 3 percen belül kérjük ellenőrizze a spam mappát.",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Próbálja ki ingyen {{amount}} napig, utána {{originalPrice}}", "Try free for {{amount}} days, then {{originalPrice}}.": "Próbálja ki ingyen {{amount}} napig, utána {{originalPrice}}",
"Unlock access to all newsletters by becoming a paid subscriber.": "Előfizetéssel hozzáférhet minden hírlevélhez!", "Unlock access to all newsletters by becoming a paid subscriber.": "Előfizetéssel hozzáférhet minden hírlevélhez!",
"Unsubscribe from all emails": "Leiratkozás minden email-ről", "Unsubscribe from all emails": "Leiratkozás minden email-ről",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "A visszajelzése segít abban, hogy mit publikáljunk", "Your input helps shape what gets published.": "A visszajelzése segít abban, hogy mit publikáljunk",
"Your subscription will expire on {{expiryDate}}": "Az előfizetése lejár ekkor: {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Az előfizetése lejár ekkor: {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Az előfizetése megújul ekkor: {{expiryDate}}", "Your subscription will renew on {{renewalDate}}": "Az előfizetése megújul ekkor: {{expiryDate}}",
"Your subscription will start on {{subscriptionStart}}": "Az előfizetése ekkor indul: {{expiryDate}}", "Your subscription will start on {{subscriptionStart}}": "Az előfizetése ekkor indul: {{expiryDate}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Berhasil! Email Anda telah diperbarui.", "Success! Your email is updated.": "Berhasil! Email Anda telah diperbarui.",
"Successfully unsubscribed": "Berhasil berhenti berlangganan", "Successfully unsubscribed": "Berhasil berhenti berlangganan",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Terima kasih telah berlangganan. Sebelum Anda mulai membaca, berikut adalah beberapa situs lain yang mungkin akan Anda nikmati.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Terima kasih telah berlangganan. Sebelum Anda mulai membaca, berikut adalah beberapa situs lain yang mungkin akan Anda nikmati.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Terima kasih atas masukannya!", "Thanks for the feedback!": "Terima kasih atas masukannya!",
"That didn't go to plan": "Itu tidak berjalan sesuai rencana", "That didn't go to plan": "Itu tidak berjalan sesuai rencana",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Alamat email Anda yang kami miliki adalah {{memberEmail}} — jika itu tidak benar, Anda dapat memperbarui di <button>area pengaturan akun</button> Anda.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Alamat email Anda yang kami miliki adalah {{memberEmail}} — jika itu tidak benar, Anda dapat memperbarui di <button>area pengaturan akun</button> Anda.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Situs ini hanya untuk yang diundang, hubungi pemiliknya untuk mendapatkan akses.", "This site is invite-only, contact the owner for access.": "Situs ini hanya untuk yang diundang, hubungi pemiliknya untuk mendapatkan akses.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Untuk menyelesaikan pendaftaran, klik tautan konfirmasi di kotak masuk Anda. Jika tidak diterima dalam waktu 3 menit, pastikan untuk memeriksa folder spam Anda!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Untuk menyelesaikan pendaftaran, klik tautan konfirmasi di kotak masuk Anda. Jika tidak diterima dalam waktu 3 menit, pastikan untuk memeriksa folder spam Anda!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Coba gratis selama {{amount}} hari, kemudian {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Coba gratis selama {{amount}} hari, kemudian {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Buka akses ke semua buletin dengan menjadi pelanggan berbayar.", "Unlock access to all newsletters by becoming a paid subscriber.": "Buka akses ke semua buletin dengan menjadi pelanggan berbayar.",
"Unsubscribe from all emails": "Berhenti berlangganan dari semua email", "Unsubscribe from all emails": "Berhenti berlangganan dari semua email",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Masukan Anda membantu membentuk apa yang dipublikasikan.", "Your input helps shape what gets published.": "Masukan Anda membantu membentuk apa yang dipublikasikan.",
"Your subscription will expire on {{expiryDate}}": "Langganan Anda akan berakhir pada {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Langganan Anda akan berakhir pada {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Langganan Anda akan diperpanjang pada {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Langganan Anda akan diperpanjang pada {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Langganan Anda akan dimulai pada {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Langganan Anda akan dimulai pada {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Þetta heppnaðist! Breyting á netfangi hefur tekið gildi.", "Success! Your email is updated.": "Þetta heppnaðist! Breyting á netfangi hefur tekið gildi.",
"Successfully unsubscribed": "Uppsögn heppnaðist", "Successfully unsubscribed": "Uppsögn heppnaðist",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Takk fyrir endurgjöfina!", "Thanks for the feedback!": "Takk fyrir endurgjöfina!",
"That didn't go to plan": "Þetta fór ekki samkvæmt áætlun", "That didn't go to plan": "Þetta fór ekki samkvæmt áætlun",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Netfangið sem þú ert skráður fyrir er {{memberEmail}} — ef það er rangt geturðu breytt því í <button>aðgangsstillingum</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Netfangið sem þú ert skráður fyrir er {{memberEmail}} — ef það er rangt geturðu breytt því í <button>aðgangsstillingum</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Aðgangur krefst boðsmiða, hafið samband við eiganda síðunnar til að fá aðgang.", "This site is invite-only, contact the owner for access.": "Aðgangur krefst boðsmiða, hafið samband við eiganda síðunnar til að fá aðgang.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Til að ljúka nýskráningu skaltu smella á staðfestingarhlekkinn sem var sendur á netfangið þitt. Ef hann er ekki kominn innan 3 mínútna skaltu athuga spam-möppuna.", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Til að ljúka nýskráningu skaltu smella á staðfestingarhlekkinn sem var sendur á netfangið þitt. Ef hann er ekki kominn innan 3 mínútna skaltu athuga spam-möppuna.",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Prófaðu í {{amount}} daga án endurgjalds og síðan fyrir {{originalPrice}}", "Try free for {{amount}} days, then {{originalPrice}}.": "Prófaðu í {{amount}} daga án endurgjalds og síðan fyrir {{originalPrice}}",
"Unlock access to all newsletters by becoming a paid subscriber.": "Fáðu aðgang að öllum fréttabréfum með því að gerast áskrifandi.", "Unlock access to all newsletters by becoming a paid subscriber.": "Fáðu aðgang að öllum fréttabréfum með því að gerast áskrifandi.",
"Unsubscribe from all emails": "Segja upp öllum tölvupóstum", "Unsubscribe from all emails": "Segja upp öllum tölvupóstum",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "", "Your input helps shape what gets published.": "",
"Your subscription will expire on {{expiryDate}}": "Áskrift þinni lýkur {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Áskrift þinni lýkur {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Áskrift þín verður endurnýjuð {{expiryDate}}", "Your subscription will renew on {{renewalDate}}": "Áskrift þín verður endurnýjuð {{expiryDate}}",
"Your subscription will start on {{subscriptionStart}}": "Áskrift þín hefst {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Áskrift þín hefst {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Fatto! La tua email è stata aggiornata.", "Success! Your email is updated.": "Fatto! La tua email è stata aggiornata.",
"Successfully unsubscribed": "Disiscrizione effettuata con successo", "Successfully unsubscribed": "Disiscrizione effettuata con successo",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Grazie per esserti iscritto. Prima della lettura, ecco alcuni siti che potrebbero interessarti.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Grazie per esserti iscritto. Prima della lettura, ecco alcuni siti che potrebbero interessarti.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Grazie per il feedback!", "Thanks for the feedback!": "Grazie per il feedback!",
"That didn't go to plan": "Questo non era previsto", "That didn't go to plan": "Questo non era previsto",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "L'indirizzo email registrato è {{memberEmail}} — se non è corretto, puoi modificarlo nelle tue <button>impostazioni dell'account</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "L'indirizzo email registrato è {{memberEmail}} — se non è corretto, puoi modificarlo nelle tue <button>impostazioni dell'account</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Questo sito è accessibile solo su invito, contatta il proprietario per poter accedere.", "This site is invite-only, contact the owner for access.": "Questo sito è accessibile solo su invito, contatta il proprietario per poter accedere.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Per completare l'iscrizione, clicca il link di conferma inviato alla tua email. Se non lo ricevi entro 3 minuti, controlla nello spam!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Per completare l'iscrizione, clicca il link di conferma inviato alla tua email. Se non lo ricevi entro 3 minuti, controlla nello spam!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Prova gratis per {{amount}} giorni, poi {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Prova gratis per {{amount}} giorni, poi {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Abbonati per sbloccare l'accesso a tutte le newsletter.", "Unlock access to all newsletters by becoming a paid subscriber.": "Abbonati per sbloccare l'accesso a tutte le newsletter.",
"Unsubscribe from all emails": "Disiscriviti da tutte le email", "Unsubscribe from all emails": "Disiscriviti da tutte le email",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Il tuo contributo aiuta a dare forma a ciò che viene pubblicato.", "Your input helps shape what gets published.": "Il tuo contributo aiuta a dare forma a ciò che viene pubblicato.",
"Your subscription will expire on {{expiryDate}}": "Il tuo abbonamento scadrà il {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Il tuo abbonamento scadrà il {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Il tuo abbonamento verrà rinnovato il {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Il tuo abbonamento verrà rinnovato il {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Il tuo abbonamento inizierà il {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Il tuo abbonamento inizierà il {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "成功しました!メールアドレスが更新されました。", "Success! Your email is updated.": "成功しました!メールアドレスが更新されました。",
"Successfully unsubscribed": "正常に購読解除されました", "Successfully unsubscribed": "正常に購読解除されました",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "購読ありがとうございます。お楽しみになる前に、以下のサイトもおすすめです。", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "購読ありがとうございます。お楽しみになる前に、以下のサイトもおすすめです。",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "フィードバックありがとうございます!", "Thanks for the feedback!": "フィードバックありがとうございます!",
"That didn't go to plan": "計画通りにいきませんでした", "That didn't go to plan": "計画通りにいきませんでした",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "メールアドレスは{{memberEmail}}です。もし正しくない場合は、<button>アカウント設定</button>で更新することができます。", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "メールアドレスは{{memberEmail}}です。もし正しくない場合は、<button>アカウント設定</button>で更新することができます。",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "このサイトは招待制です。アクセスするにはオーナーに連絡してください。", "This site is invite-only, contact the owner for access.": "このサイトは招待制です。アクセスするにはオーナーに連絡してください。",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "新規登録を完了するには、受信トレイの確認リンクをクリックしてください。3分経っても届かない場合は、スパムフォルダを確認してください。", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "新規登録を完了するには、受信トレイの確認リンクをクリックしてください。3分経っても届かない場合は、スパムフォルダを確認してください。",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "{{amount}}日間無料でお試しください、その後は{{originalPrice}}です。", "Try free for {{amount}} days, then {{originalPrice}}.": "{{amount}}日間無料でお試しください、その後は{{originalPrice}}です。",
"Unlock access to all newsletters by becoming a paid subscriber.": "有料の購読者になることで、すべてのニュースレターへのアクセスが可能になります。", "Unlock access to all newsletters by becoming a paid subscriber.": "有料の購読者になることで、すべてのニュースレターへのアクセスが可能になります。",
"Unsubscribe from all emails": "すべてのメールの購読解除", "Unsubscribe from all emails": "すべてのメールの購読解除",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "あなたの感想を今後の内容の参考にさせていただきます。", "Your input helps shape what gets published.": "あなたの感想を今後の内容の参考にさせていただきます。",
"Your subscription will expire on {{expiryDate}}": "あなたの購読は{{expiryDate}}に期限切れになります。", "Your subscription will expire on {{expiryDate}}": "あなたの購読は{{expiryDate}}に期限切れになります。",
"Your subscription will renew on {{renewalDate}}": "あなたの購読は{{renewalDate}}に更新されます。", "Your subscription will renew on {{renewalDate}}": "あなたの購読は{{renewalDate}}に更新されます。",
"Your subscription will start on {{subscriptionStart}}": "あなたの購読は{{subscriptionStart}}に開始されます。", "Your subscription will start on {{subscriptionStart}}": "あなたの購読は{{subscriptionStart}}に開始されます。"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "성공! 이메일이 업데이트되었어요.", "Success! Your email is updated.": "성공! 이메일이 업데이트되었어요.",
"Successfully unsubscribed": "구독이 성공적으로 취소되었어요", "Successfully unsubscribed": "구독이 성공적으로 취소되었어요",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "의견을 보내주셔서 감사해요!", "Thanks for the feedback!": "의견을 보내주셔서 감사해요!",
"That didn't go to plan": "계획대로 진행되지 않았어요", "That didn't go to plan": "계획대로 진행되지 않았어요",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "회원님의 이메일 주소는 {{memberEmail}}이에요. 이 주소가 맞지 않다면 <button>계정 설정 영역</button>에서 업데이트할 수 있어요.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "회원님의 이메일 주소는 {{memberEmail}}이에요. 이 주소가 맞지 않다면 <button>계정 설정 영역</button>에서 업데이트할 수 있어요.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "위 사이트는 초대된 사용자만 사용이 가능해요. 접근을 위해서는 관리자에게 연락해 주세요.", "This site is invite-only, contact the owner for access.": "위 사이트는 초대된 사용자만 사용이 가능해요. 접근을 위해서는 관리자에게 연락해 주세요.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "가입을 완료하려면 이메일의 확인 링크를 클릭해 주세요. 3분 이내에 도착하지 않으면 스팸 폴더를 확인해 주세요!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "가입을 완료하려면 이메일의 확인 링크를 클릭해 주세요. 3분 이내에 도착하지 않으면 스팸 폴더를 확인해 주세요!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "{{amount}}일 동안 무료로 사용한 후 {{originalPrice}}로 결제해 주세요.", "Try free for {{amount}} days, then {{originalPrice}}.": "{{amount}}일 동안 무료로 사용한 후 {{originalPrice}}로 결제해 주세요.",
"Unlock access to all newsletters by becoming a paid subscriber.": "유료 구독자가 되어 모든 뉴스레터에 접근해 주세요.", "Unlock access to all newsletters by becoming a paid subscriber.": "유료 구독자가 되어 모든 뉴스레터에 접근해 주세요.",
"Unsubscribe from all emails": "모든 이메일 구독 취소", "Unsubscribe from all emails": "모든 이메일 구독 취소",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "회원님의 의견은 게시물을 제작하는 것에 큰 도움이 돼요.", "Your input helps shape what gets published.": "회원님의 의견은 게시물을 제작하는 것에 큰 도움이 돼요.",
"Your subscription will expire on {{expiryDate}}": "회원님의 구독은 {{expiryDate}}에 만료돼요", "Your subscription will expire on {{expiryDate}}": "회원님의 구독은 {{expiryDate}}에 만료돼요",
"Your subscription will renew on {{renewalDate}}": "회원님의 구독은 {{renewalDate}}에 갱신돼요", "Your subscription will renew on {{renewalDate}}": "회원님의 구독은 {{renewalDate}}에 갱신돼요",
"Your subscription will start on {{subscriptionStart}}": "회원님의 구독은 {{subscriptionStart}}에 시작돼요", "Your subscription will start on {{subscriptionStart}}": "회원님의 구독은 {{subscriptionStart}}에 시작돼요"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Pavyko! Jūsų el. pašto adresas atnaujintas.", "Success! Your email is updated.": "Pavyko! Jūsų el. pašto adresas atnaujintas.",
"Successfully unsubscribed": "Prenumerata sėkmingai atšaukta", "Successfully unsubscribed": "Prenumerata sėkmingai atšaukta",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Ačiū, kad užsiprenumeravote. Prieš pradėdami skaityti, peržvelkite ir keletą kitų svetainių, kurios jums gali patikti.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Ačiū, kad užsiprenumeravote. Prieš pradėdami skaityti, peržvelkite ir keletą kitų svetainių, kurios jums gali patikti.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Ačiū už atsiliepimą!", "Thanks for the feedback!": "Ačiū už atsiliepimą!",
"That didn't go to plan": "Kažkas nepavyko", "That didn't go to plan": "Kažkas nepavyko",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Nustatytas El. pašto adresas yra {{memberEmail}} jei jis neteisingas, galite jį atnaujinti <button>paskyros nustatymuose</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Nustatytas El. pašto adresas yra {{memberEmail}} jei jis neteisingas, galite jį atnaujinti <button>paskyros nustatymuose</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Ši svetainė pasiekiama tik su pakvietimu, susisiekite su savininku dėl prieigos. ", "This site is invite-only, contact the owner for access.": "Ši svetainė pasiekiama tik su pakvietimu, susisiekite su savininku dėl prieigos. ",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Jei norite užbaigti registraciją, gautame el. laiške spustelėkite patvirtinimo nuorodą. Jei laiško negaunate per 3 minutes, patikrinkite šlamšto (spam) aplanką!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Jei norite užbaigti registraciją, gautame el. laiške spustelėkite patvirtinimo nuorodą. Jei laiško negaunate per 3 minutes, patikrinkite šlamšto (spam) aplanką!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Išbandykite {{amount}} d. nemokamai, vėliau {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Išbandykite {{amount}} d. nemokamai, vėliau {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Gaukite prieigą prie visų naujienlaiškių įsigiję mokamą prenumeratą.", "Unlock access to all newsletters by becoming a paid subscriber.": "Gaukite prieigą prie visų naujienlaiškių įsigiję mokamą prenumeratą.",
"Unsubscribe from all emails": "Atšaukti visas laiškų prenumeratas.", "Unsubscribe from all emails": "Atšaukti visas laiškų prenumeratas.",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Jūsų indėlis padeda kurti tai, kas yra viešinama.", "Your input helps shape what gets published.": "Jūsų indėlis padeda kurti tai, kas yra viešinama.",
"Your subscription will expire on {{expiryDate}}": "Jūsų prenumerata baigsis {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Jūsų prenumerata baigsis {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Jūsų prenumerata atsinaujins {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Jūsų prenumerata atsinaujins {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Jūsų prenumerata prasidės {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Jūsų prenumerata prasidės {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "Захиалгыг амжилттай цуцаллаа", "Successfully unsubscribed": "Захиалгыг амжилттай цуцаллаа",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Саналаа илгээсэнд баярлалаа!", "Thanks for the feedback!": "Саналаа илгээсэнд баярлалаа!",
"That didn't go to plan": "", "That didn't go to plan": "",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Энэхүү сайт руу зөвхөн урилгаар нэвтрэх боломжтой тул та админд нь хандана уу.", "This site is invite-only, contact the owner for access.": "Энэхүү сайт руу зөвхөн урилгаар нэвтрэх боломжтой тул та админд нь хандана уу.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Тан руу илгээсэн баталгаажуулах холбоос дээр дарж бүртгэлээ дуусгана уу. Хэрвээ 3 минутын дотор ирэхгүй бол спамаа шалгана уу!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Тан руу илгээсэн баталгаажуулах холбоос дээр дарж бүртгэлээ дуусгана уу. Хэрвээ 3 минутын дотор ирэхгүй бол спамаа шалгана уу!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Бүх имэйлийг зогсоох", "Unsubscribe from all emails": "Бүх имэйлийг зогсоох",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Таны санал дараа дараагийн нийтлэлийг илүү чанартай болгоход туслана", "Your input helps shape what gets published.": "Таны санал дараа дараагийн нийтлэлийг илүү чанартай болгоход туслана",
"Your subscription will expire on {{expiryDate}}": "", "Your subscription will expire on {{expiryDate}}": "",
"Your subscription will renew on {{renewalDate}}": "", "Your subscription will renew on {{renewalDate}}": "",
"Your subscription will start on {{subscriptionStart}}": "", "Your subscription will start on {{subscriptionStart}}": ""
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Berjaya! E-mel anda dikemas kini.", "Success! Your email is updated.": "Berjaya! E-mel anda dikemas kini.",
"Successfully unsubscribed": "Pemberhentian langganan berjaya", "Successfully unsubscribed": "Pemberhentian langganan berjaya",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Terima kasih atas maklum balas!", "Thanks for the feedback!": "Terima kasih atas maklum balas!",
"That didn't go to plan": "Itu tidak berjalan sesuai dengan rancangan", "That didn't go to plan": "Itu tidak berjalan sesuai dengan rancangan",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Alamat e-mel yang kami miliki untuk anda adalah {{memberEmail}} — jika itu tidak betul, anda boleh mengemas kini di <button>ruang tetapan akaun</button> anda.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Alamat e-mel yang kami miliki untuk anda adalah {{memberEmail}} — jika itu tidak betul, anda boleh mengemas kini di <button>ruang tetapan akaun</button> anda.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Laman web ini hanya untuk jemputan, hubungi pemilik untuk akses.", "This site is invite-only, contact the owner for access.": "Laman web ini hanya untuk jemputan, hubungi pemilik untuk akses.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Untuk melengkapkan pendaftaran, klik pautan pengesahan di peti masuk anda. Jika ia tidak tiba dalam masa 3 minit, semak folder spam anda!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Untuk melengkapkan pendaftaran, klik pautan pengesahan di peti masuk anda. Jika ia tidak tiba dalam masa 3 minit, semak folder spam anda!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Cuba secara percuma selama {{amount}} hari, kemudian {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Cuba secara percuma selama {{amount}} hari, kemudian {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Buka akses ke semua newsletter dengan menjadi pelanggan berbayar.", "Unlock access to all newsletters by becoming a paid subscriber.": "Buka akses ke semua newsletter dengan menjadi pelanggan berbayar.",
"Unsubscribe from all emails": "Berhenti langganan dari semua e-mel", "Unsubscribe from all emails": "Berhenti langganan dari semua e-mel",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Input anda membantu membentuk apa yang diterbitkan.", "Your input helps shape what gets published.": "Input anda membantu membentuk apa yang diterbitkan.",
"Your subscription will expire on {{expiryDate}}": "Langganan anda akan tamat tempoh pada {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Langganan anda akan tamat tempoh pada {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Langganan anda akan diperbaharui pada {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Langganan anda akan diperbaharui pada {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Langganan anda akan bermula pada {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Langganan anda akan bermula pada {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "Succesvol uitgeschreven", "Successfully unsubscribed": "Succesvol uitgeschreven",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Bedankt voor je feedback!", "Thanks for the feedback!": "Bedankt voor je feedback!",
"That didn't go to plan": "Er ging iets mis", "That didn't go to plan": "Er ging iets mis",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Deze site is alleen toegankelijk op uitnodiging, neem contact op met de eigenaar.", "This site is invite-only, contact the owner for access.": "Deze site is alleen toegankelijk op uitnodiging, neem contact op met de eigenaar.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Klik op de bevestigingslink in de e-mail om je registratie af te ronden. Check ook je spamfolder als hij niet binnen de 3 minuten aankomt.", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Klik op de bevestigingslink in de e-mail om je registratie af te ronden. Check ook je spamfolder als hij niet binnen de 3 minuten aankomt.",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Uitschrijven voor alles", "Unsubscribe from all emails": "Uitschrijven voor alles",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Jouw mening helpt bepalen wat er gepubliceerd wordt.", "Your input helps shape what gets published.": "Jouw mening helpt bepalen wat er gepubliceerd wordt.",
"Your subscription will expire on {{expiryDate}}": "", "Your subscription will expire on {{expiryDate}}": "",
"Your subscription will renew on {{renewalDate}}": "", "Your subscription will renew on {{renewalDate}}": "",
"Your subscription will start on {{subscriptionStart}}": "", "Your subscription will start on {{subscriptionStart}}": ""
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Vellykka! E-posten din er oppdatert.", "Success! Your email is updated.": "Vellykka! E-posten din er oppdatert.",
"Successfully unsubscribed": "Vellykka kansellering.", "Successfully unsubscribed": "Vellykka kansellering.",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Takk for tilbakemeldingen!", "Thanks for the feedback!": "Takk for tilbakemeldingen!",
"That didn't go to plan": "Det gjekk ikkje etter planen", "That didn't go to plan": "Det gjekk ikkje etter planen",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "E-postadressa me har på deg er {{memberEmail}} viss det ikkje er riktig, kan du oppdatera i <button>brukarinnstillingane</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "E-postadressa me har på deg er {{memberEmail}} viss det ikkje er riktig, kan du oppdatera i <button>brukarinnstillingane</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Denne sida er kun for inviterte, ta kontakt med eigaren for tilgang.", "This site is invite-only, contact the owner for access.": "Denne sida er kun for inviterte, ta kontakt med eigaren for tilgang.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Klikk på bekreftelseslenka i innboksen din for å fullføra registreringa. Sjekk spam-mappa di om lenka ikkje har kome innan 3 minutt.", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Klikk på bekreftelseslenka i innboksen din for å fullføra registreringa. Sjekk spam-mappa di om lenka ikkje har kome innan 3 minutt.",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Prøv gratis i {{amount}} dagar, deretter {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Prøv gratis i {{amount}} dagar, deretter {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Få tilgang til alle nyheitsbreva med å bli ein betalande abonnent.", "Unlock access to all newsletters by becoming a paid subscriber.": "Få tilgang til alle nyheitsbreva med å bli ein betalande abonnent.",
"Unsubscribe from all emails": "Slutt å motta e-postar", "Unsubscribe from all emails": "Slutt å motta e-postar",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Dine tilbakemeldinger hjelper oss å forma tilbodet vårt.", "Your input helps shape what gets published.": "Dine tilbakemeldinger hjelper oss å forma tilbodet vårt.",
"Your subscription will expire on {{expiryDate}}": "Ditt abonnement går ut den {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Ditt abonnement går ut den {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Ditt abonnement vil fornyast den {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Ditt abonnement vil fornyast den {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Ditt abonnement vil byrja den {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Ditt abonnement vil byrja den {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Suksess, din epost er oppdatert", "Success! Your email is updated.": "Suksess, din epost er oppdatert",
"Successfully unsubscribed": "Avmelding vellykket", "Successfully unsubscribed": "Avmelding vellykket",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Takk for tilbakemeldingen!", "Thanks for the feedback!": "Takk for tilbakemeldingen!",
"That didn't go to plan": "Det gikk ikke som planlagt", "That didn't go to plan": "Det gikk ikke som planlagt",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Denne siten er kun fo inviterte. Kontakt eieren for invitasjon.", "This site is invite-only, contact the owner for access.": "Denne siten er kun fo inviterte. Kontakt eieren for invitasjon.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "For å fullføre registreringen, klikk på bekreftelseslenken i innboksen din. Hvis den ikke kommer innen 3 minutter, må du sjekke søppelposten din!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "For å fullføre registreringen, klikk på bekreftelseslenken i innboksen din. Hvis den ikke kommer innen 3 minutter, må du sjekke søppelposten din!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "Få tilgang til alle nyhetsbrevene ved å oppgradere ditt abonnement.", "Unlock access to all newsletters by becoming a paid subscriber.": "Få tilgang til alle nyhetsbrevene ved å oppgradere ditt abonnement.",
"Unsubscribe from all emails": "Meld deg av mottak av all epost", "Unsubscribe from all emails": "Meld deg av mottak av all epost",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Din tilbakemelding bidrar til å forme hva som blir publisert.", "Your input helps shape what gets published.": "Din tilbakemelding bidrar til å forme hva som blir publisert.",
"Your subscription will expire on {{expiryDate}}": "Ditt abonnement vil avsluttes den {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Ditt abonnement vil avsluttes den {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Ditt abonnemnet vil fornyes den {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Ditt abonnemnet vil fornyes den {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Ditt abonnement vil begynne den {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Ditt abonnement vil begynne den {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Sukces! Twój email został zaktualizowany.", "Success! Your email is updated.": "Sukces! Twój email został zaktualizowany.",
"Successfully unsubscribed": "Wypisanie udane", "Successfully unsubscribed": "Wypisanie udane",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Dziękujemy za subskrypcję. Zanim zaczniesz czytać, poniżej znajduje się kilka innych witryn, które mogą Ci się spodobać.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Dziękujemy za subskrypcję. Zanim zaczniesz czytać, poniżej znajduje się kilka innych witryn, które mogą Ci się spodobać.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Dziękujemy za ocenę!", "Thanks for the feedback!": "Dziękujemy za ocenę!",
"That didn't go to plan": "Coś poszło nie tak", "That didn't go to plan": "Coś poszło nie tak",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Adres email, który mamy to {{memberEmail}} — jeśli nie jest poprawny, możesz go zaktualizować w swoich <button>ustawieniach konta</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Adres email, który mamy to {{memberEmail}} — jeśli nie jest poprawny, możesz go zaktualizować w swoich <button>ustawieniach konta</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Ta strona posiada zamknięty dostęp. Skontaktuj się z właścicielem, aby uzyskać dostęp.", "This site is invite-only, contact the owner for access.": "Ta strona posiada zamknięty dostęp. Skontaktuj się z właścicielem, aby uzyskać dostęp.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Aby dokończyć rejestrację, kliknij w link przesłany na twoją skrzynkę pocztową. Jeśli nie dotrze w ciągu 3 minut, sprawdź folder spamu!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Aby dokończyć rejestrację, kliknij w link przesłany na twoją skrzynkę pocztową. Jeśli nie dotrze w ciągu 3 minut, sprawdź folder spamu!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Wypróbuj za darmo przez {{amount}} dni, później {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Wypróbuj za darmo przez {{amount}} dni, później {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Zostań płatnym subskrybentem i odblokuj dostęp do wszystkich biuletynów.", "Unlock access to all newsletters by becoming a paid subscriber.": "Zostań płatnym subskrybentem i odblokuj dostęp do wszystkich biuletynów.",
"Unsubscribe from all emails": "Wypisz się w wszystkich emaili", "Unsubscribe from all emails": "Wypisz się w wszystkich emaili",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Twoja ocena pomoże nam lepiej kształtować nasz publikacje.", "Your input helps shape what gets published.": "Twoja ocena pomoże nam lepiej kształtować nasz publikacje.",
"Your subscription will expire on {{expiryDate}}": "Subskrypcja wygaśnie w dniu {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Subskrypcja wygaśnie w dniu {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Subskrypcja zostanie odnowiona w dniu {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Subskrypcja zostanie odnowiona w dniu {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Subskrypcja rozpocznie się w dniu {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Subskrypcja rozpocznie się w dniu {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Sucesso! Seu e-mail foi atualizado.", "Success! Your email is updated.": "Sucesso! Seu e-mail foi atualizado.",
"Successfully unsubscribed": "Inscrição cancelada com sucesso", "Successfully unsubscribed": "Inscrição cancelada com sucesso",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Obrigado por se inscrever. Antes de começar a ler, abaixo estão alguns outros sites que você pode gostar.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Obrigado por se inscrever. Antes de começar a ler, abaixo estão alguns outros sites que você pode gostar.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Obrigado pela avaliação!", "Thanks for the feedback!": "Obrigado pela avaliação!",
"That didn't go to plan": "Algo não saiu como planejado", "That didn't go to plan": "Algo não saiu como planejado",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "O endereço de e-mail que temos para você é {{memberEmail}} — se isso não estiver correto, você pode atualizá-lo na sua <button>área de configurações da conta</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "O endereço de e-mail que temos para você é {{memberEmail}} — se isso não estiver correto, você pode atualizá-lo na sua <button>área de configurações da conta</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Este site é apenas para convidados. Contate o proprietário para obter acesso.", "This site is invite-only, contact the owner for access.": "Este site é apenas para convidados. Contate o proprietário para obter acesso.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Para completar o cadastro, clique no link de confirmação enviado para sua caixa de entrada. Se o link não chegar dentro de 3 minutos, confira a pasta de spam!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Para completar o cadastro, clique no link de confirmação enviado para sua caixa de entrada. Se o link não chegar dentro de 3 minutos, confira a pasta de spam!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Experimente grátis por {{amount}} dias, depois {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Experimente grátis por {{amount}} dias, depois {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Desbloqueie o acesso a todas as newsletters se tornando um assinante pago.", "Unlock access to all newsletters by becoming a paid subscriber.": "Desbloqueie o acesso a todas as newsletters se tornando um assinante pago.",
"Unsubscribe from all emails": "Cancelar inscrição em todos os e-mails", "Unsubscribe from all emails": "Cancelar inscrição em todos os e-mails",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Sua resposta ajuda a moldar o que será publicado.", "Your input helps shape what gets published.": "Sua resposta ajuda a moldar o que será publicado.",
"Your subscription will expire on {{expiryDate}}": "Sua assinatura expirará em {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Sua assinatura expirará em {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Sua assinatura será renovada em {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Sua assinatura será renovada em {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Sua assinatura começará em {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Sua assinatura começará em {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Sucesso! Seu email foi atualizado.", "Success! Your email is updated.": "Sucesso! Seu email foi atualizado.",
"Successfully unsubscribed": "Subscrição cancelada com sucesso", "Successfully unsubscribed": "Subscrição cancelada com sucesso",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Obrigado pela avaliação!", "Thanks for the feedback!": "Obrigado pela avaliação!",
"That didn't go to plan": "Algo não correu como planeado", "That didn't go to plan": "Algo não correu como planeado",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "O endereço de email que temos para você é {{memberEmail}} — se isso não estiver correto, você pode atualizá-lo na sua <button>área de configurações da conta</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "O endereço de email que temos para você é {{memberEmail}} — se isso não estiver correto, você pode atualizá-lo na sua <button>área de configurações da conta</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "O acesso a este site é feito apenas por convite. Contate o proprietário para obter acesso.", "This site is invite-only, contact the owner for access.": "O acesso a este site é feito apenas por convite. Contate o proprietário para obter acesso.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Para completar o registo, clique no link de confirmação enviado para sua caixa de entrada. Se não o receberes detro de 3 minutos, verifica a pasta de spam!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Para completar o registo, clique no link de confirmação enviado para sua caixa de entrada. Se não o receberes detro de 3 minutos, verifica a pasta de spam!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Experimente grátis por {{amount}} dias, depois {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Experimente grátis por {{amount}} dias, depois {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Desbloqueie o acesso a todas as newsletters se tornando um assinante pago.", "Unlock access to all newsletters by becoming a paid subscriber.": "Desbloqueie o acesso a todas as newsletters se tornando um assinante pago.",
"Unsubscribe from all emails": "Cancelar subscrição de todos os emails", "Unsubscribe from all emails": "Cancelar subscrição de todos os emails",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "O teu feedback ajuda a decidir o conteúdo que será publicado no futuro.", "Your input helps shape what gets published.": "O teu feedback ajuda a decidir o conteúdo que será publicado no futuro.",
"Your subscription will expire on {{expiryDate}}": "Sua assinatura expirará em {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Sua assinatura expirará em {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Sua assinatura será renovada em {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Sua assinatura será renovada em {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Sua assinatura começará em {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Sua assinatura começará em {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Succes! Emailul tău a fost actualizat.", "Success! Your email is updated.": "Succes! Emailul tău a fost actualizat.",
"Successfully unsubscribed": "Dezabonare realizată cu succes", "Successfully unsubscribed": "Dezabonare realizată cu succes",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Îți mulțumim pentru abonare. Înainte să începi să citești, iată câteva alte site-uri care s-ar putea să-ți placă.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Îți mulțumim pentru abonare. Înainte să începi să citești, iată câteva alte site-uri care s-ar putea să-ți placă.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Mulțumim pentru feedback!", "Thanks for the feedback!": "Mulțumim pentru feedback!",
"That didn't go to plan": "Asta nu a mers conform planului", "That didn't go to plan": "Asta nu a mers conform planului",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Adresa de email pe care o avem pentru tine este {{memberEmail}} — dacă nu este corectă, o poți actualiza în <button>zona de setări a contului</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Adresa de email pe care o avem pentru tine este {{memberEmail}} — dacă nu este corectă, o poți actualiza în <button>zona de setări a contului</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Acest site este disponibil doar pe bază de invitație, contactează proprietarul pentru acces.", "This site is invite-only, contact the owner for access.": "Acest site este disponibil doar pe bază de invitație, contactează proprietarul pentru acces.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Pentru a finaliza înregistrarea, apasă pe link-ul de confirmare din inbox-ul tău. Dacă nu ajunge în 3 minute, verifică folderul de spam!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Pentru a finaliza înregistrarea, apasă pe link-ul de confirmare din inbox-ul tău. Dacă nu ajunge în 3 minute, verifică folderul de spam!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Încearcă gratuit pentru {{amount}} zile, apoi {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Încearcă gratuit pentru {{amount}} zile, apoi {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Deblochează accesul la toate buletinele informative devenind un abonat plătit.", "Unlock access to all newsletters by becoming a paid subscriber.": "Deblochează accesul la toate buletinele informative devenind un abonat plătit.",
"Unsubscribe from all emails": "Dezabonează-te de la toate emailurile", "Unsubscribe from all emails": "Dezabonează-te de la toate emailurile",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Contribuția ta ajută la conturarea a ceea ce se publică.", "Your input helps shape what gets published.": "Contribuția ta ajută la conturarea a ceea ce se publică.",
"Your subscription will expire on {{expiryDate}}": "Abonamentul tău va expira pe {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Abonamentul tău va expira pe {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Abonamentul tău se va reînnoi pe {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Abonamentul tău se va reînnoi pe {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Abonamentul tău va începe pe {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Abonamentul tău va începe pe {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "Подписка успешно отменена", "Successfully unsubscribed": "Подписка успешно отменена",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Спасибо за отзыв!", "Thanks for the feedback!": "Спасибо за отзыв!",
"That didn't go to plan": "Что-то пошло не так", "That didn't go to plan": "Что-то пошло не так",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Этот сайт доступен только по приглашениям, свяжитесь с владельцем для получения доступа.", "This site is invite-only, contact the owner for access.": "Этот сайт доступен только по приглашениям, свяжитесь с владельцем для получения доступа.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Чтобы завершить регистрацию, нажмите на ссылку подтверждения в вашем почтовом ящике. Если она не придет в течение 3 минут, проверьте папку Спам!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Чтобы завершить регистрацию, нажмите на ссылку подтверждения в вашем почтовом ящике. Если она не придет в течение 3 минут, проверьте папку Спам!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Отписаться от всех писем", "Unsubscribe from all emails": "Отписаться от всех писем",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Ваш отзыв поможет решить, что будет опубликовано дальше.", "Your input helps shape what gets published.": "Ваш отзыв поможет решить, что будет опубликовано дальше.",
"Your subscription will expire on {{expiryDate}}": "", "Your subscription will expire on {{expiryDate}}": "",
"Your subscription will renew on {{renewalDate}}": "", "Your subscription will renew on {{renewalDate}}": "",
"Your subscription will start on {{subscriptionStart}}": "", "Your subscription will start on {{subscriptionStart}}": ""
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "සාර්ථකයි! ඔබගේ email ලිපිනය update කරන ලදී.", "Success! Your email is updated.": "සාර්ථකයි! ඔබගේ email ලිපිනය update කරන ලදී.",
"Successfully unsubscribed": "සාර්ථකව unsubscribed කර ඇත", "Successfully unsubscribed": "සාර්ථකව unsubscribed කර ඇත",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "subscribe කිරී\u200bම ගැන ඔබට ස්තුතියි. ඔබ කියවීම ආරම්භ කිරීමට පෙර, ඔබට රසවිඳිය හැකි තවත් වෙබ් අඩවි කිහිපයක් පහත දැක්වේ.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "subscribe කිරී\u200bම ගැන ඔබට ස්තුතියි. ඔබ කියවීම ආරම්භ කිරීමට පෙර, ඔබට රසවිඳිය හැකි තවත් වෙබ් අඩවි කිහිපයක් පහත දැක්වේ.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "ප්\u200dරතිචාරය සඳහා ස්තූතියි!", "Thanks for the feedback!": "ප්\u200dරතිචාරය සඳහා ස්තූතියි!",
"That didn't go to plan": "එය සැලැස්මට අනුකූලව සිදු වුණේ නෑ", "That didn't go to plan": "එය සැලැස්මට අනුකූලව සිදු වුණේ නෑ",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "ඔබගේ email ලිපිනය ලෙස අප සතුව තිබෙන්නේ {{memberEmail}} යන email ලිපිනයයි - මෙය වැරදියි නම්, ඔබගේ <button>account settings area එක</button> හරහා update කළ හැක.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "ඔබගේ email ලිපිනය ලෙස අප සතුව තිබෙන්නේ {{memberEmail}} යන email ලිපිනයයි - මෙය වැරදියි නම්, ඔබගේ <button>account settings area එක</button> හරහා update කළ හැක.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "මෙම වෙබ් අඩවිය ආරාධිතයන් සඳහා පමණි, ප්\u200dරවේශ වීම සඳහා හිමිකරු අමතන්න.", "This site is invite-only, contact the owner for access.": "මෙම වෙබ් අඩවිය ආරාධිතයන් සඳහා පමණි, ප්\u200dරවේශ වීම සඳහා හිමිකරු අමතන්න.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Signup වීම සම්පූර්ණ කිරීම සඳහා, ඔබ\u200dගේ inbox එකට ලැබුණු email එකෙහි ඇති confirmation link එක click කරන්න. එය මිනිත්තු 3ක් ඇතුලත නොපැමිණියේ නම්, spam folder එක පරීක්ෂා කරන්න!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Signup වීම සම්පූර්ණ කිරීම සඳහා, ඔබ\u200dගේ inbox එකට ලැබුණු email එකෙහි ඇති confirmation link එක click කරන්න. එය මිනිත්තු 3ක් ඇතුලත නොපැමිණියේ නම්, spam folder එක පරීක්ෂා කරන්න!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "දින {{amount}}ක් නොමිලයේ භාවිතා කරන්න, ඉන් පසුව {{originalPrice}}ක් පමණි.", "Try free for {{amount}} days, then {{originalPrice}}.": "දින {{amount}}ක් නොමිලයේ භාවිතා කරන්න, ඉන් පසුව {{originalPrice}}ක් පමණි.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Paid subscriber කෙනෙකු වීම හරහා සියළුම newsletters වලට access ලබාගන්න.", "Unlock access to all newsletters by becoming a paid subscriber.": "Paid subscriber කෙනෙකු වීම හරහා සියළුම newsletters වලට access ලබාගන්න.",
"Unsubscribe from all emails": "සියළුම email වලින් unsubscribe කරන්න", "Unsubscribe from all emails": "සියළුම email වලින් unsubscribe කරන්න",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "ඔබගේ අදහස් ඉදිරියේදී සිදු කරන පළකිරීම් වැඩිදියුණු කිරීමට උදව් කරනු ඇත.", "Your input helps shape what gets published.": "ඔබගේ අදහස් ඉදිරියේදී සිදු කරන පළකිරීම් වැඩිදියුණු කිරීමට උදව් කරනු ඇත.",
"Your subscription will expire on {{expiryDate}}": "ඔබගේ subscription එක {{expiryDate}} වැනි දින කල් ඉකුත් වනු ඇත", "Your subscription will expire on {{expiryDate}}": "ඔබගේ subscription එක {{expiryDate}} වැනි දින කල් ඉකුත් වනු ඇත",
"Your subscription will renew on {{renewalDate}}": "ඔබගේ subscription එක {{expiryDate}} වැනි දින renew වනු ඇත", "Your subscription will renew on {{renewalDate}}": "ඔබගේ subscription එක {{expiryDate}} වැනි දින renew වනු ඇත",
"Your subscription will start on {{subscriptionStart}}": "ඔබගේ subscription එක {{expiryDate}} වැනි දින ආරම්භ වනු ඇත", "Your subscription will start on {{subscriptionStart}}": "ඔබගේ subscription එක {{expiryDate}} වැනි දින ආරම්භ වනු ඇත"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Super! Váš e-mail bol zmenený.", "Success! Your email is updated.": "Super! Váš e-mail bol zmenený.",
"Successfully unsubscribed": "Úspešne odhlásený z odberu", "Successfully unsubscribed": "Úspešne odhlásený z odberu",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Ďakujeme za spätnú väzbu!", "Thanks for the feedback!": "Ďakujeme za spätnú väzbu!",
"That didn't go to plan": "Niečo sa nepodarilo", "That didn't go to plan": "Niečo sa nepodarilo",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Táto stránka je iba pre pozvaných úžívateľov, kontaktujte vlastníka stránky.", "This site is invite-only, contact the owner for access.": "Táto stránka je iba pre pozvaných úžívateľov, kontaktujte vlastníka stránky.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Vyskúšajte zadarmo na {{amount}} dní, potom {{originalPrice}}", "Try free for {{amount}} days, then {{originalPrice}}.": "Vyskúšajte zadarmo na {{amount}} dní, potom {{originalPrice}}",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Odhlásený z odberu všetkých email-ov", "Unsubscribe from all emails": "Odhlásený z odberu všetkých email-ov",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Vaše pripomienky pomáhajú spoluvytvárať obsah webu.", "Your input helps shape what gets published.": "Vaše pripomienky pomáhajú spoluvytvárať obsah webu.",
"Your subscription will expire on {{expiryDate}}": "Váše predplatné expiruje {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Váše predplatné expiruje {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Váše predplatné bude obnovené {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Váše predplatné bude obnovené {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Váše predplatné začína {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Váše predplatné začína {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "Uspešno ste se odjavili", "Successfully unsubscribed": "Uspešno ste se odjavili",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Hvala za povratne informacije!", "Thanks for the feedback!": "Hvala za povratne informacije!",
"That didn't go to plan": "To ni šlo po načrtu", "That didn't go to plan": "To ni šlo po načrtu",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "To spletno mesto je dostopno samo s povabilom, obrnite se na lastnika.", "This site is invite-only, contact the owner for access.": "To spletno mesto je dostopno samo s povabilom, obrnite se na lastnika.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Dokončatje prijavo s klikom na povezavo, ki ste jo dobili na vaš e-poštni naslov. Če je ne prejmete v treh minutah, preverite mapo za neželeno pošto!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Dokončatje prijavo s klikom na povezavo, ki ste jo dobili na vaš e-poštni naslov. Če je ne prejmete v treh minutah, preverite mapo za neželeno pošto!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Odjava od vseh e-poštnih sporočil", "Unsubscribe from all emails": "Odjava od vseh e-poštnih sporočil",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Vaš prispevek se nam pomaga odločati, kaj objavimo.", "Your input helps shape what gets published.": "Vaš prispevek se nam pomaga odločati, kaj objavimo.",
"Your subscription will expire on {{expiryDate}}": "", "Your subscription will expire on {{expiryDate}}": "",
"Your subscription will renew on {{renewalDate}}": "", "Your subscription will renew on {{renewalDate}}": "",
"Your subscription will start on {{subscriptionStart}}": "", "Your subscription will start on {{subscriptionStart}}": ""
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Sukses! Emaili yt eshte rifreskuar", "Success! Your email is updated.": "Sukses! Emaili yt eshte rifreskuar",
"Successfully unsubscribed": "Çabonuar me sukses", "Successfully unsubscribed": "Çabonuar me sukses",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Faleminderit per komentin!", "Thanks for the feedback!": "Faleminderit per komentin!",
"That didn't go to plan": "Kjo nuk shkoi sipas planit", "That didn't go to plan": "Kjo nuk shkoi sipas planit",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Kjo faqe eshte vetem me ftesa, kontaktoni zoteruesin per akses.", "This site is invite-only, contact the owner for access.": "Kjo faqe eshte vetem me ftesa, kontaktoni zoteruesin per akses.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Për të përfunduar regjistrimin, klikoni lidhjen e konfirmimit në kutinë tuaj hyrëse. Nëse nuk arrin brenda 3 minutash, kontrolloni dosjen tuaj të postës elektronike!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Për të përfunduar regjistrimin, klikoni lidhjen e konfirmimit në kutinë tuaj hyrëse. Nëse nuk arrin brenda 3 minutash, kontrolloni dosjen tuaj të postës elektronike!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Provo falas per {{amount}} dite, pastaj {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Provo falas per {{amount}} dite, pastaj {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Zhbllokoni aksesin per te gjitha buletinet duke u bere nje abonues me pagese.", "Unlock access to all newsletters by becoming a paid subscriber.": "Zhbllokoni aksesin per te gjitha buletinet duke u bere nje abonues me pagese.",
"Unsubscribe from all emails": "Çregjistrohu nga të gjitha emailet", "Unsubscribe from all emails": "Çregjistrohu nga të gjitha emailet",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Të dhënat tuaja ndihmojnë në formimin e asaj që publikohet.", "Your input helps shape what gets published.": "Të dhënat tuaja ndihmojnë në formimin e asaj që publikohet.",
"Your subscription will expire on {{expiryDate}}": "Abonimi juaj do te skadoje ne {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Abonimi juaj do te skadoje ne {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Abonimi juaj to te rinovohet ne {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Abonimi juaj to te rinovohet ne {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Abonimi juaj do te filloje ne {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Abonimi juaj do te filloje ne {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "Uspešna odjava", "Successfully unsubscribed": "Uspešna odjava",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Hvala za povratne informacije!", "Thanks for the feedback!": "Hvala za povratne informacije!",
"That didn't go to plan": "Nešto nije kako treba", "That didn't go to plan": "Nešto nije kako treba",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Ovaj sajt je samo za članove, kontaktirajte vlasnika kako bi dobili pristup.", "This site is invite-only, contact the owner for access.": "Ovaj sajt je samo za članove, kontaktirajte vlasnika kako bi dobili pristup.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Kliknite na link da biste završili registraciju. Ukoliko ne stigne za 3 minuta proverite spam folder!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Kliknite na link da biste završili registraciju. Ukoliko ne stigne za 3 minuta proverite spam folder!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Odjavite se sa svih email-ova", "Unsubscribe from all emails": "Odjavite se sa svih email-ova",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Vaš doprinos pomaže u oblikovanju onoga što se objavljuje.", "Your input helps shape what gets published.": "Vaš doprinos pomaže u oblikovanju onoga što se objavljuje.",
"Your subscription will expire on {{expiryDate}}": "Vaša pretplata će isteći {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Vaša pretplata će isteći {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Vaša pretplata će biti obnovljena {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Vaša pretplata će biti obnovljena {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Vaša pretplata će se nastaviti {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Vaša pretplata će se nastaviti {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Det gick bra! Din e-postadress är uppdaterad.", "Success! Your email is updated.": "Det gick bra! Din e-postadress är uppdaterad.",
"Successfully unsubscribed": "Prenumerationen avslutades framgångsrikt", "Successfully unsubscribed": "Prenumerationen avslutades framgångsrikt",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Tack för att du prenumererar. Innan du börjar läsa finns några andra webbplatser nedan som du kanske skulle uppskatta.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Tack för att du prenumererar. Innan du börjar läsa finns några andra webbplatser nedan som du kanske skulle uppskatta.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Tack för din feedback!", "Thanks for the feedback!": "Tack för din feedback!",
"That didn't go to plan": "Det där fungerade inte som tänkt", "That didn't go to plan": "Det där fungerade inte som tänkt",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "E-postadressen vi har för dig är {{memberEmail}} — om det inte stämmer kan du uppdatera den i <button>kontoinställningar</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "E-postadressen vi har för dig är {{memberEmail}} — om det inte stämmer kan du uppdatera den i <button>kontoinställningar</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Den här sidan är endast för inbjudna, kontakta ägaren för åtkomst.", "This site is invite-only, contact the owner for access.": "Den här sidan är endast för inbjudna, kontakta ägaren för åtkomst.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "För att slutföra registreringen, klicka på bekräftelselänken i din inkorg. Om den inte kommer fram inom 3 minuter, kolla din skräppostmapp!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "För att slutföra registreringen, klicka på bekräftelselänken i din inkorg. Om den inte kommer fram inom 3 minuter, kolla din skräppostmapp!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Prova gratis i {{amount}} dagar, sen betalar du {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Prova gratis i {{amount}} dagar, sen betalar du {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Få tillgång till alla nyhetsbrev genom att bli betalande prenumerant", "Unlock access to all newsletters by becoming a paid subscriber.": "Få tillgång till alla nyhetsbrev genom att bli betalande prenumerant",
"Unsubscribe from all emails": "Avregistrera från alla e-postutskick", "Unsubscribe from all emails": "Avregistrera från alla e-postutskick",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Din åsikt hjälper till att forma vad som publiceras.", "Your input helps shape what gets published.": "Din åsikt hjälper till att forma vad som publiceras.",
"Your subscription will expire on {{expiryDate}}": "Din prenumeration avslutas {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Din prenumeration avslutas {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Din prenumeration förnyas {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Din prenumeration förnyas {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Din prenumeration startar {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Din prenumeration startar {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Başarılı! E-postanız güncellendi.", "Success! Your email is updated.": "Başarılı! E-postanız güncellendi.",
"Successfully unsubscribed": "Abonelikten başarıyla çıkıldı", "Successfully unsubscribed": "Abonelikten başarıyla çıkıldı",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Abone olduğunuz için teşekkür ederiz. Okumaya başlamadan önce, aşağıda keyif alabileceğiniz birkaç başka site bulunmaktadır.", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "Abone olduğunuz için teşekkür ederiz. Okumaya başlamadan önce, aşağıda keyif alabileceğiniz birkaç başka site bulunmaktadır.",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Geri bildirim için teşekkürler!", "Thanks for the feedback!": "Geri bildirim için teşekkürler!",
"That didn't go to plan": "Bir şeyler ters gitti", "That didn't go to plan": "Bir şeyler ters gitti",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Sizin için kayıtlı olan e-posta adresi {{memberEmail}} — eğer bu doğru değilse, bunu <button>hesap ayarları bölümünde</button> güncelleyebilirsiniz.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Sizin için kayıtlı olan e-posta adresi {{memberEmail}} — eğer bu doğru değilse, bunu <button>hesap ayarları bölümünde</button> güncelleyebilirsiniz.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Bu site sadece davetiyesi olanlar içindir, erişim için site sahibiyle iletişime geç.", "This site is invite-only, contact the owner for access.": "Bu site sadece davetiyesi olanlar içindir, erişim için site sahibiyle iletişime geç.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Kaydınızı tamamlamak için gelen kutunuzdaki onay bağlantısına tıklayın. Eğer 3 dakika içinde gelmezse, spam klasörünüzü kontrol edin!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Kaydınızı tamamlamak için gelen kutunuzdaki onay bağlantısına tıklayın. Eğer 3 dakika içinde gelmezse, spam klasörünüzü kontrol edin!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "{{amount}} gün ücretsiz deneyin, ardından {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "{{amount}} gün ücretsiz deneyin, ardından {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Tüm bültenlere erişimi açmak için ücretli bir abone olun.", "Unlock access to all newsletters by becoming a paid subscriber.": "Tüm bültenlere erişimi açmak için ücretli bir abone olun.",
"Unsubscribe from all emails": "Tüm e-postaların aboneliğinden çık", "Unsubscribe from all emails": "Tüm e-postaların aboneliğinden çık",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Yorumun yayımlanan içeriklerin şekillenmesine yardımcı olur.", "Your input helps shape what gets published.": "Yorumun yayımlanan içeriklerin şekillenmesine yardımcı olur.",
"Your subscription will expire on {{expiryDate}}": "Aboneliğiniz {{expiryDate}} tarihinde sona erecek", "Your subscription will expire on {{expiryDate}}": "Aboneliğiniz {{expiryDate}} tarihinde sona erecek",
"Your subscription will renew on {{renewalDate}}": "Aboneliğiniz {{renewalDate}} tarihinde yenilenecek", "Your subscription will renew on {{renewalDate}}": "Aboneliğiniz {{renewalDate}} tarihinde yenilenecek",
"Your subscription will start on {{subscriptionStart}}": "Aboneliğiniz {{subscriptionStart}} tarihinde başlayacak", "Your subscription will start on {{subscriptionStart}}": "Aboneliğiniz {{subscriptionStart}} tarihinde başlayacak"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "Підписку успішно скасовано", "Successfully unsubscribed": "Підписку успішно скасовано",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Дякуємо за відгук!", "Thanks for the feedback!": "Дякуємо за відгук!",
"That didn't go to plan": "Щось пішло не так", "That didn't go to plan": "Щось пішло не так",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Цей сайт доступний тільки за запрошенням, звернись до власника сайта для доступу.", "This site is invite-only, contact the owner for access.": "Цей сайт доступний тільки за запрошенням, звернись до власника сайта для доступу.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Щоб завершити реєстрацію, натисни посилання в своїй електронній пошті для підтвердження. Якщо електронний лист не прийде протягом 3 хвилин, перевір папку спам!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Щоб завершити реєстрацію, натисни посилання в своїй електронній пошті для підтвердження. Якщо електронний лист не прийде протягом 3 хвилин, перевір папку спам!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Відписатись від усіх листів", "Unsubscribe from all emails": "Відписатись від усіх листів",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Твій відгук допоможе вирішити що публікувати далі.", "Your input helps shape what gets published.": "Твій відгук допоможе вирішити що публікувати далі.",
"Your subscription will expire on {{expiryDate}}": "", "Your subscription will expire on {{expiryDate}}": "",
"Your subscription will renew on {{renewalDate}}": "", "Your subscription will renew on {{renewalDate}}": "",
"Your subscription will start on {{subscriptionStart}}": "", "Your subscription will start on {{subscriptionStart}}": ""
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "", "Success! Your email is updated.": "",
"Successfully unsubscribed": "Obuna muvaffaqiyatli bekor qilindi", "Successfully unsubscribed": "Obuna muvaffaqiyatli bekor qilindi",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Izoh uchun rahmat!", "Thanks for the feedback!": "Izoh uchun rahmat!",
"That didn't go to plan": "Bu rejaga mos kelmadi", "That didn't go to plan": "Bu rejaga mos kelmadi",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Bu saytda faqat taklif qilinadi, kirish uchun egasiga murojaat qiling.", "This site is invite-only, contact the owner for access.": "Bu saytda faqat taklif qilinadi, kirish uchun egasiga murojaat qiling.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Royxatdan otishni yakunlash uchun pochta qutingizdagi tasdiqlash havolasini bosing. Agar u 3 daqiqada kelmasa, spam jildini tekshiring!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Royxatdan otishni yakunlash uchun pochta qutingizdagi tasdiqlash havolasini bosing. Agar u 3 daqiqada kelmasa, spam jildini tekshiring!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "", "Try free for {{amount}} days, then {{originalPrice}}.": "",
"Unlock access to all newsletters by becoming a paid subscriber.": "", "Unlock access to all newsletters by becoming a paid subscriber.": "",
"Unsubscribe from all emails": "Barcha elektron pochta xabarlariga obunani bekor qiling", "Unsubscribe from all emails": "Barcha elektron pochta xabarlariga obunani bekor qiling",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "", "Your input helps shape what gets published.": "",
"Your subscription will expire on {{expiryDate}}": "", "Your subscription will expire on {{expiryDate}}": "",
"Your subscription will renew on {{renewalDate}}": "", "Your subscription will renew on {{renewalDate}}": "",
"Your subscription will start on {{subscriptionStart}}": "", "Your subscription will start on {{subscriptionStart}}": ""
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "Xong! Đã cập nhật email của bạn.", "Success! Your email is updated.": "Xong! Đã cập nhật email của bạn.",
"Successfully unsubscribed": "Đã hủy theo dõi thành công", "Successfully unsubscribed": "Đã hủy theo dõi thành công",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "Cám ơn phản hồi của bạn!", "Thanks for the feedback!": "Cám ơn phản hồi của bạn!",
"That didn't go to plan": "Không thực hiện được", "That didn't go to plan": "Không thực hiện được",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Địa chỉ email của bạn là {{memberEmail}} — nếu sai, bạn có thể đổi trong <button>cài đặt tài khoản</button>.", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "Địa chỉ email của bạn là {{memberEmail}} — nếu sai, bạn có thể đổi trong <button>cài đặt tài khoản</button>.",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "Trang web này chỉ dành cho những người được mời, hãy liên hệ với chủ sở hữu để cấp quyền truy cập.", "This site is invite-only, contact the owner for access.": "Trang web này chỉ dành cho những người được mời, hãy liên hệ với chủ sở hữu để cấp quyền truy cập.",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Để hoàn tất đăng ký, nhấn vào liên kết xác nhận trong hộp thư đến của bạn. Sau 3 phút mà không thấy, hãy kiểm tra hộp thư spam của bạn!", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "Để hoàn tất đăng ký, nhấn vào liên kết xác nhận trong hộp thư đến của bạn. Sau 3 phút mà không thấy, hãy kiểm tra hộp thư spam của bạn!",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "Đọc thử {{amount}} ngày, phí sau đọc thử là {{originalPrice}}.", "Try free for {{amount}} days, then {{originalPrice}}.": "Đọc thử {{amount}} ngày, phí sau đọc thử là {{originalPrice}}.",
"Unlock access to all newsletters by becoming a paid subscriber.": "Trở thành thành viên trả phí để mở khóa truy cập toàn bộ bản tin.", "Unlock access to all newsletters by becoming a paid subscriber.": "Trở thành thành viên trả phí để mở khóa truy cập toàn bộ bản tin.",
"Unsubscribe from all emails": "Hủy theo dõi tất cả email", "Unsubscribe from all emails": "Hủy theo dõi tất cả email",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "Thông tin của bạn giúp định hình nội dung được xuất bản.", "Your input helps shape what gets published.": "Thông tin của bạn giúp định hình nội dung được xuất bản.",
"Your subscription will expire on {{expiryDate}}": "Gói của bạn sẽ hết hạn vào {{expiryDate}}", "Your subscription will expire on {{expiryDate}}": "Gói của bạn sẽ hết hạn vào {{expiryDate}}",
"Your subscription will renew on {{renewalDate}}": "Gói của bạn sẽ tự động gia hạn vào {{renewalDate}}", "Your subscription will renew on {{renewalDate}}": "Gói của bạn sẽ tự động gia hạn vào {{renewalDate}}",
"Your subscription will start on {{subscriptionStart}}": "Gói của bạn bắt đầu có hiệu lực vào {{subscriptionStart}}", "Your subscription will start on {{subscriptionStart}}": "Gói của bạn bắt đầu có hiệu lực vào {{subscriptionStart}}"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "成功了!您的 email 已更新。", "Success! Your email is updated.": "成功了!您的 email 已更新。",
"Successfully unsubscribed": "成功取消訂閱", "Successfully unsubscribed": "成功取消訂閱",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "感謝您的訂閱,以下是一些你可能也會有興趣的網站。", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "感謝您的訂閱,以下是一些你可能也會有興趣的網站。",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "感謝您的意見!", "Thanks for the feedback!": "感謝您的意見!",
"That didn't go to plan": "發生錯誤", "That didn't go to plan": "發生錯誤",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "就我們所知,您的 email 地址是 {{memberEmail}}。如果有誤,您可以在<button>帳號設定區塊</button>進行更新。", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "就我們所知,您的 email 地址是 {{memberEmail}}。如果有誤,您可以在<button>帳號設定區塊</button>進行更新。",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "此網站僅限受邀請者觀看,請聯繫網站擁有者取得存取權限。", "This site is invite-only, contact the owner for access.": "此網站僅限受邀請者觀看,請聯繫網站擁有者取得存取權限。",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "要完成註冊,請點擊您收件匣中的確認連結。如果在 3 分鐘內沒有收到,請檢查您的垃圾郵件。", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "要完成註冊,請點擊您收件匣中的確認連結。如果在 3 分鐘內沒有收到,請檢查您的垃圾郵件。",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "免費試用 {{amount}} 天,然後以 {{originalPrice}} 開始訂閱。", "Try free for {{amount}} days, then {{originalPrice}}.": "免費試用 {{amount}} 天,然後以 {{originalPrice}} 開始訂閱。",
"Unlock access to all newsletters by becoming a paid subscriber.": "成為付費會員以解鎖所有電子報內容。", "Unlock access to all newsletters by becoming a paid subscriber.": "成為付費會員以解鎖所有電子報內容。",
"Unsubscribe from all emails": "取消所有電子報訂閱", "Unsubscribe from all emails": "取消所有電子報訂閱",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "您的建議有助於改善我們的內容。", "Your input helps shape what gets published.": "您的建議有助於改善我們的內容。",
"Your subscription will expire on {{expiryDate}}": "您的訂閱將於 {{expiryDate}} 到期", "Your subscription will expire on {{expiryDate}}": "您的訂閱將於 {{expiryDate}} 到期",
"Your subscription will renew on {{renewalDate}}": "您的訂閱將於 {{renewalDate}} 自動續訂", "Your subscription will renew on {{renewalDate}}": "您的訂閱將於 {{renewalDate}} 自動續訂",
"Your subscription will start on {{subscriptionStart}}": "您的訂閱將於 {{subscriptionStart}} 開始", "Your subscription will start on {{subscriptionStart}}": "您的訂閱將於 {{subscriptionStart}} 開始"
"Your support means a lot.": ""
} }

View File

@ -121,7 +121,8 @@
"Success! Your email is updated.": "成功!您的电子邮件已更新。", "Success! Your email is updated.": "成功!您的电子邮件已更新。",
"Successfully unsubscribed": "成功取消订阅", "Successfully unsubscribed": "成功取消订阅",
"Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "感谢您的订阅。在开始阅读之前,以下是您可能会喜欢的一些其他网站。", "Thank you for subscribing. Before you start reading, below are a few other sites you may enjoy.": "感谢您的订阅。在开始阅读之前,以下是您可能会喜欢的一些其他网站。",
"Thank you!": "", "Thank you for your support": "",
"Thank you for your support!": "",
"Thanks for the feedback!": "感谢您的建议!", "Thanks for the feedback!": "感谢您的建议!",
"That didn't go to plan": "似乎出错了", "That didn't go to plan": "似乎出错了",
"The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "您的电子邮件地址是 {{memberEmail}} - 如果该邮箱不正确,您可以在<button>帐户设置区域</button>中更新它。", "The email address we have for you is {{memberEmail}} — if that's not correct, you can update it in your <button>account settings area</button>.": "您的电子邮件地址是 {{memberEmail}} - 如果该邮箱不正确,您可以在<button>帐户设置区域</button>中更新它。",
@ -130,6 +131,7 @@
"This site is invite-only, contact the owner for access.": "此网站仅限邀请,联系网站所有者以获取访问", "This site is invite-only, contact the owner for access.": "此网站仅限邀请,联系网站所有者以获取访问",
"This site is not accepting payments at the moment.": "", "This site is not accepting payments at the moment.": "",
"To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "要完成注册请点击您收件箱中的确认链接。如果在3分钟内没有收到请检查一下您的垃圾邮件文件夹", "To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!": "要完成注册请点击您收件箱中的确认链接。如果在3分钟内没有收到请检查一下您的垃圾邮件文件夹",
"To continue to stay up to date, subscribe to {{publication}} below.": "",
"Try free for {{amount}} days, then {{originalPrice}}.": "{{amount}}天免费试用,之后{{originalPrice}}。", "Try free for {{amount}} days, then {{originalPrice}}.": "{{amount}}天免费试用,之后{{originalPrice}}。",
"Unlock access to all newsletters by becoming a paid subscriber.": "成为付费订阅用户以解锁全部快报。", "Unlock access to all newsletters by becoming a paid subscriber.": "成为付费订阅用户以解锁全部快报。",
"Unsubscribe from all emails": "取消所有邮件订阅", "Unsubscribe from all emails": "取消所有邮件订阅",
@ -159,6 +161,5 @@
"Your input helps shape what gets published.": "您的建议将使我们变得更好。", "Your input helps shape what gets published.": "您的建议将使我们变得更好。",
"Your subscription will expire on {{expiryDate}}": "您的订阅将在{{expiryDate}}到期", "Your subscription will expire on {{expiryDate}}": "您的订阅将在{{expiryDate}}到期",
"Your subscription will renew on {{renewalDate}}": "您的订阅将在{{renewalDate}}续费", "Your subscription will renew on {{renewalDate}}": "您的订阅将在{{renewalDate}}续费",
"Your subscription will start on {{subscriptionStart}}": "您的订阅将于{{subscriptionStart}}开始", "Your subscription will start on {{subscriptionStart}}": "您的订阅将于{{subscriptionStart}}开始"
"Your support means a lot.": ""
} }