mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Updated recommendation modal copy when triggered after signup (#17985)
refs https://github.com/TryGhost/Product/issues/3771
This commit is contained in:
parent
a08e0ed14e
commit
8f272e730b
45 changed files with 133 additions and 44 deletions
|
@ -451,7 +451,7 @@ export default class App extends React.Component {
|
|||
}
|
||||
if (path && linkRegex.test(path)) {
|
||||
const [,pagePath] = path.match(linkRegex);
|
||||
const {page, pageQuery} = this.getPageFromLinkPath(pagePath) || {};
|
||||
const {page, pageQuery, pageData} = this.getPageFromLinkPath(pagePath) || {};
|
||||
const lastPage = ['accountPlan', 'accountProfile'].includes(page) ? 'accountHome' : null;
|
||||
const showPopup = (
|
||||
['monthly', 'yearly'].includes(pageQuery) ||
|
||||
|
@ -463,6 +463,7 @@ export default class App extends React.Component {
|
|||
showPopup,
|
||||
...(page ? {page} : {}),
|
||||
...(pageQuery ? {pageQuery} : {}),
|
||||
...(pageData ? {pageData} : {}),
|
||||
...(lastPage ? {lastPage} : {})
|
||||
};
|
||||
}
|
||||
|
@ -796,6 +797,13 @@ export default class App extends React.Component {
|
|||
return {
|
||||
page: 'recommendations'
|
||||
};
|
||||
} else if (path === 'welcome') {
|
||||
return {
|
||||
page: 'recommendations',
|
||||
pageData: {
|
||||
signup: true
|
||||
}
|
||||
};
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ async function signup({data, state, api}) {
|
|||
|
||||
if (recommendationsEnabled && recommendations.length > 0) {
|
||||
const currentUrl = window.location.origin + window.location.pathname;
|
||||
successUrl = `${currentUrl}#/portal/recommendations`;
|
||||
successUrl = `${currentUrl}#/portal/welcome`;
|
||||
}
|
||||
|
||||
let {plan, tierId, cadence, email, name, newsletters, offerId} = data;
|
||||
|
|
|
@ -4,7 +4,7 @@ import CloseButton from '../common/CloseButton';
|
|||
|
||||
export const RecommendationsPageStyles = `
|
||||
.gh-portal-recommendation-item .gh-portal-list-detail {
|
||||
padding: 4px 24px 4px 0px;
|
||||
padding: 4px 24px 4px 0px;
|
||||
}
|
||||
|
||||
.gh-portal-recommendation-item-header {
|
||||
|
@ -31,17 +31,16 @@ export const RecommendationsPageStyles = `
|
|||
}
|
||||
`;
|
||||
|
||||
// Fisher-Yates shuffle
|
||||
// @see https://stackoverflow.com/a/2450976/3015595
|
||||
const shuffleRecommendations = (array) => {
|
||||
let currentIndex = array.length;
|
||||
let randomIndex;
|
||||
|
||||
// While there remain elements to shuffle...
|
||||
while (currentIndex > 0) {
|
||||
// Pick a remaining element...
|
||||
randomIndex = Math.floor(Math.random() * currentIndex);
|
||||
currentIndex -= 1;
|
||||
|
||||
// And swap it with the current element.
|
||||
[array[currentIndex], array[randomIndex]] = [
|
||||
array[randomIndex], array[currentIndex]];
|
||||
}
|
||||
|
@ -69,7 +68,7 @@ const RecommendationItem = ({title, url, reason, favicon}) => {
|
|||
};
|
||||
|
||||
const RecommendationsPage = () => {
|
||||
const {site, t} = useContext(AppContext);
|
||||
const {site, pageData, t} = useContext(AppContext);
|
||||
const {title, icon} = site;
|
||||
const {recommendations_enabled: recommendationsEnabled = false} = site;
|
||||
const {recommendations = []} = site;
|
||||
|
@ -81,7 +80,6 @@ const RecommendationsPage = () => {
|
|||
const [shuffledRecommendations, setShuffledRecommendations] = useState([]);
|
||||
|
||||
useEffect(() => {
|
||||
// Shuffle the array once when the component mounts
|
||||
setShuffledRecommendations(shuffleRecommendations([...recommendations]));
|
||||
}, [recommendations]);
|
||||
|
||||
|
@ -89,6 +87,9 @@ const RecommendationsPage = () => {
|
|||
setNumToShow(recommendations.length);
|
||||
};
|
||||
|
||||
const heading = pageData && pageData.signup ? t('You\'re subscribed!') : t('Recommendations');
|
||||
const subheading = t(`Here are a few other sites {{siteTitle}} thinks you may enjoy.`, {siteTitle: title});
|
||||
|
||||
if (!recommendationsEnabled || recommendations.length < 1) {
|
||||
return null;
|
||||
}
|
||||
|
@ -98,10 +99,9 @@ const RecommendationsPage = () => {
|
|||
<CloseButton />
|
||||
<div className="gh-portal-recommendations-header">
|
||||
{icon && <img className="gh-portal-signup-logo" alt={title} src={icon} />}
|
||||
{/* TODO: Make heading dynamic so it's "You‘re subscribed!" when it's during the signup flow, and "Recommendations" when triggered elsewhere */}
|
||||
<h1 className="gh-portal-main-title">{t('You‘re subscribed!')}</h1>
|
||||
<h1 className="gh-portal-main-title">{heading}</h1>
|
||||
</div>
|
||||
<p className="gh-portal-recommendations-description">{t(`Here are a few other sites ${title} thinks you may enjoy.`)}</p>
|
||||
<p className="gh-portal-recommendations-description">{subheading}</p>
|
||||
|
||||
<div className="gh-portal-list">
|
||||
{shuffledRecommendations.slice(0, numToShow).map((recommendation, index) => (
|
||||
|
|
|
@ -827,7 +827,7 @@ describe('Signup', () => {
|
|||
emailType: 'signup',
|
||||
name: 'Jamie Larsen',
|
||||
plan: 'free',
|
||||
redirect: `${currentUrl}#/portal/recommendations`
|
||||
redirect: `${currentUrl}#/portal/welcome`
|
||||
});
|
||||
});
|
||||
});
|
||||
|
@ -887,9 +887,10 @@ describe('Signup', () => {
|
|||
plan: singleTierProduct.yearlyPrice.id,
|
||||
tierId: singleTierProduct.id,
|
||||
cadence: 'year',
|
||||
successUrl: `${currentUrl}#/portal/recommendations`
|
||||
successUrl: `${currentUrl}#/portal/welcome`
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Ontvang 'n kennisgewing wanneer iemand op u kommentaar reageer",
|
||||
"Give feedback on this post": "Gee terugvoering oor hierdie pos",
|
||||
"Help! I'm not receiving emails": "Help! Ek ontvang nie e-posse nie",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "As 'n nuusbrief as spam geïdentifiseer word, word e-posse outomaties vir daardie adres afgeskakel om seker te maak dat u geen ongewenste boodskappe meer ontvang nie.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "As die spam klag per ongeluk was, of as u weer e-posse wil begin ontvang, kan u weer inskryf vir e-posse deur op die knoppie op die vorige skerm te klik.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "As u nou kanselleer, sal u toegang hê tot {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "U ontvang tans nie e-posse nie",
|
||||
"You're not receiving emails": "U ontvang nie e-posse nie",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "U ontvang nie e-posse nie, omdat u onlangs 'n boodskap as spam gemerk het, of omdat boodskappe nie na die e-pos adres wat u verskaf het gestuur kon word nie.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "U het suksesvol aangemeld.",
|
||||
"You've successfully subscribed to": "Jy het suksesvol ingeteken op",
|
||||
"Your account": "U rekening",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Бъдете уведомявани, ако някой отговори на Ваш коментар",
|
||||
"Give feedback on this post": "Вашият отзив за публикацията",
|
||||
"Help! I'm not receiving emails": "Помощ! Не получавам имейли",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Ако даден информационен бюлетин бъде отбелязан като спам, имейлите за този адрес се деактивират автоматично, за да е сигурно, че няма да получавате нежелани съобщения.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Ако оплакването за спам е било случайно или искате отново да започнете да получавате имейли, можете да активирате това, като кликнете върху бутона на предишния екран.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Ако отмените абонамента си сега, ще продължите да имате достъп до {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Понастоящем не получавате имейли",
|
||||
"You're not receiving emails": "Не получавате имейли",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Не получавате писма защото или пощенският адрес е невалиден, или писмата се класифицират като нежелана поща.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Влязохте успешно.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Твоят профил",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Rep notificacions quan algú et respongui al teu comentari",
|
||||
"Give feedback on this post": "Enviar comentaris sobre aquesta publicació",
|
||||
"Help! I'm not receiving emails": "Ajuda! No rebo correus electrònics",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Si un butlletí es marca com a correu brossa, els correus electrònics es desactivaran automàticament per a aquesta adreça per assegurar-vos que ja no rebeu cap missatge no desitjat.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Si la queixa de correu brossa va ser accidental, o si voleu començar a rebre correus electrònics de nou, podeu tornar a subscriure's als correus electrònics fent clic al botó de la pantalla anterior.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Si cancel·leu la vostra subscripció ara, continuareu tenint accés fins al {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Actualment no rebeu correus electrònics",
|
||||
"You're not receiving emails": "No estàs rebent correus electrònics",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "No estas reben correus electrònics perquè has marcat recentment com SPAM o perque no s'han pogut entregar els missatges a la direcció de correu electrònic proporcionada.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Heu iniciat la sessió correctament.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "El teu copte",
|
||||
|
|
|
@ -82,6 +82,7 @@
|
|||
"Give feedback on this post": "A label that goes with the member feedback buttons at the bottom of newsletters",
|
||||
"Head of Marketing at Acme, Inc": "Example of an expertise of a person used in comments when editing your expertise",
|
||||
"Help! I'm not receiving emails": "A section title in email receiving FAQ",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"Hey there!": "An introduction/opening to an email",
|
||||
"Hey there,": "An introduction/opening to an email",
|
||||
"Hide": "Action in the context menu for administrators, on smaller devices",
|
||||
|
@ -223,6 +224,7 @@
|
|||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "An error message displayed in the member account area when newsletter delivery to their address has repeatedly failed or they have marked an email as spam.",
|
||||
"You're one tap away from subscribing to {{siteTitle}} — please confirm your email address with this link:": "Descriptive text displayed in signup emails, with language focused on 'subscribing' to a newsletter and confirming their email address",
|
||||
"You're one tap away from subscribing to {{siteTitle}}!": "Descriptive text",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "A notification displayed when the user signs in",
|
||||
"You've successfully subscribed to": "A notification displayed when the user subscribed",
|
||||
"Your account": "A label indicating member account details",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Dostávat upozornění, když někdo odpoví na váš komentář",
|
||||
"Give feedback on this post": "Dát zpětnou vazbu k tomuto příspěvku",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Nepřicházejí vám e-maily, protože jste buď označili nedávnou zprávu jako spam, nebo doručování zpráv na vámi zadaný e-mail nefunguje.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Váš účet",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Bliv notificeret når nogen svarer på din kommentar",
|
||||
"Give feedback on this post": "Giv feedback til dette indlæg",
|
||||
"Help! I'm not receiving emails": "Hjælp! Jeg modtager ikke e-mails",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Hvis et nyhedsbrev er markeret som spam, deaktiveres e-mails automatisk for den adresse så du ikke længere modtage uønskede beskeder.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Hvis spamklagen var utilsigtet, eller du gerne vil begynde at modtage e-mails igen, kan du abonnere igen på e-mails ved at klikke på knappen på det forrige skærmbillede.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Hvis du annullere dit abonnement nu, vil du fortsat have adgang indtil {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Du modtager ikke e-mails i øjeblikket",
|
||||
"You're not receiving emails": "Du modtager ikke e-mails",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Du modtager ikke e-mails fordi du enten har markeret en af de seneste mails som spam, eller fordi e-mails ikke kunne leveres til den oplyste e-mailadresse.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Du er logget ind.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Din konto",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Erhalte eine Benachrichtigung, wenn jemand auf deinen Kommentar antwortet",
|
||||
"Give feedback on this post": "Gib Feedback zu diesem Beitrag",
|
||||
"Help! I'm not receiving emails": "Hilfe! Ich erhalte keine E-Mails",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Wenn ein Newsletter als Spam markiert wird, werden E-Mails für diese Adresse automatisch deaktiviert, um sicherzustellen, dass du keine unerwünschten Nachrichten mehr erhältst.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Wenn die Spam-Beschwerde versehentlich war oder du wieder E-Mails erhalten möchtest, kannst du dich durch Klicken auf den Button auf dem vorherigen Bildschirm erneut für E-Mails anmelden.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Wenn du dein Abonnement jetzt kündigst, hast du noch Zugang bis zum {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Du erhältst im Moment keine E-Mails",
|
||||
"You're not receiving emails": "Du erhältst keine E-Mails",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Du erhältst keine E-Mails, da du entweder eine kürzlich empfangene Nachricht als Spam markiert hast oder weil Nachrichten nicht an deine angegebene E-Mail-Adresse zugestellt werden konnten.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Du hast dich erfolgreich angemeldet.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Dein Konto",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "",
|
||||
"Give feedback on this post": "",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Estu sciiga kiam iu respondos al via komento",
|
||||
"Give feedback on this post": "Donu komentojn pri ĉi tiu afiŝo",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Vi ne ricevas retpoŝtojn ĉar vi aŭ markis lastatempan mesaĝon kiel trudmesaĝo, aŭ ĉar mesaĝoj ne povis liveri al via provizita retadreso.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Via konto",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Recibe notificaciones cuando alguien responda a tu comentario",
|
||||
"Give feedback on this post": "Envía comentarios sobre esta publicación",
|
||||
"Help! I'm not receiving emails": "¡Ayuda! No estoy recibiendo correos electronicos",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Si un correo es marcado como spam, los correos electrónicos son automáticamente deshabilitados para esa dirección de correo para asegurarse que usted no reciba ningún correo indeseado.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Si la denuncia de spam fue accidental, o si quiere recibir los correos electrónicos de nuevo, puede volver a suscribirse a los correos haciendo click en el botón de la pantalla anterior.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Si cancela su suscripción ahora, continuara con acceso hasta el {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Actualmente no estás recibiendo correos electrónicos",
|
||||
"You're not receiving emails": "No estás recibiendo correos electrónicos",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "No estás recibiendo correos electrónicos porque marcaste un mensaje reciente como spam o porque no se pudieron entregar los mensajes a la dirección de correo electrónico proporcionada.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Has iniciado sesión correctamente.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Tu cuenta",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Saa viesti kun joku vastaa kommenttiisi",
|
||||
"Give feedback on this post": "Anna palautetta tähän postaukseen",
|
||||
"Help! I'm not receiving emails": "Apua! En saa sähköposteja",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Jos uutiskirje on merkitty spammiksi, sähköpostit tähän osoitteeseen on estetty, jotta et enää vastaanota viestejä osoitteeseen",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Jos spam-valitus oli aiheeton, tai haluaisit saada taas viestejä, voit uudelleen ilmoittautua sähköposteihin painamalla nappia edellisellä sivulla.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Jos haluat perua tilauksesi nyt, sinulla on vielä oikeus materiaaliin {{periodEnd}} asti",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Et tällä hetkellä ole saamassa sähköposteja",
|
||||
"You're not receiving emails": "Et saa sähköposteja",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Et saa sähköposteja siksi, että joko merkitsit äskettäisen viestin roskapostiksi tai siksi, että viestejä ei voitu toimittaa antamaasi sähköpostiosoitteeseen.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Olet kirjautunut sisään onnistuneesti",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Tilisi",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Recevez une notification lorsque quelqu’un répond à votre commentaire",
|
||||
"Give feedback on this post": "Donnez votre avis sur cet article",
|
||||
"Help! I'm not receiving emails": "À l'aide ! Je ne reçois pas d'e-mails",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Si une newsletter est signalée comme étant du spam, les e-mails sont automatiquement désactivés pour cette adresse afin que vous ne receviez plus de messages indésirables.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Si le signalement spam était accidentel, ou si vous voulez de nouveau recevoir les e-mails, vous pouvez vous réinscrire aux e-mails en cliquant sur le bouton sur la page précédente.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Si vous annulez votre abonnement maintenant, vous continuerez à y avoir accès jusqu'au {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Vous ne recevez actuellement pas d'e-mails",
|
||||
"You're not receiving emails": "Vous ne recevez pas d'e-mails",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Vous ne recevez pas d’e-mails parce que vous avez marqué un message récent comme spam, ou parce que les messages n’ont pas pu être livrés à l’adresse e-mail que vous aviez indiquée.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Vous vous êtes connecté avec succès.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Votre compte",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Obavijesti me ako netko odgovori na moj komentar:",
|
||||
"Give feedback on this post": "Ostavite komentar na ovaj post",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Ne primate e-poruke zato što ste nedavnu poruku označili kao nepoželjnu ili zato što se poruke nisu mogle isporučiti na adresu e-pošte koju ste naveli.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Vaš korisnički račun",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Értesítést kérek ha valaki válaszol a kommentemre",
|
||||
"Give feedback on this post": "Hogy tetszett ez a cikk?",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Azért nem kap email-t mert vagy spam-nek jelölt egy tőlünk kapott hírlevelet, vagy azért mert a megadott email cím nem tud üzeneteket fogadni.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Fiók",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Dapatkan pemberitahuan ketika seseorang menjawab komentar Anda",
|
||||
"Give feedback on this post": "Berikan masukan pada postingan ini",
|
||||
"Help! I'm not receiving emails": "Tolong! Saya tidak menerima email",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Jika buletin ditandai sebagai spam, email secara otomatis dinonaktifkan untuk alamat tersebut guna memastikan Anda tidak lagi menerima pesan yang tidak diinginkan.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Jika keluhan spam tersebut tidak disengaja, atau Anda ingin mulai menerima email lagi, Anda dapat berlangganan kembali untuk menerima email dengan mengklik tombol di layar sebelumnya.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Jika Anda membatalkan langganan sekarang, Anda akan tetap memiliki akses hingga {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Anda saat ini tidak menerima email.",
|
||||
"You're not receiving emails": "Anda tidak menerima email.",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Anda tidak menerima email karena Anda telah menandai pesan terbaru sebagai spam, atau karena pesan tidak dapat dikirimkan ke alamat email yang Anda berikan.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Anda telah berhasil masuk.",
|
||||
"You've successfully subscribed to": "Anda telah berhasil berlangganan ke",
|
||||
"Your account": "Akun Anda",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Fá tilkynningu þegar einhver svarar ummælum þínum",
|
||||
"Give feedback on this post": "Gefðu þessari færslu endurgjöf",
|
||||
"Help! I'm not receiving emails": "Hjálp! Ég fæ ekki tölvupósta",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Ef fréttabréf er flokkað sem ruslpóstur er lokað fyrir tölvupósta á netfangið til að tryggja að þú fáir ekki þarflaus skilaboð.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Ef kvörtunin um ruslpóstinn var óviljandi eða ef þú vilt fá tölvupósta að nýju, geturðu endurvakið áskriftina með því að smella á hnappinn sem birtist í glugganum á undan.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Ef þú segir upp áskriftinni núna muntu áfram hafa aðgang fram til {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Þú færð ekki tölvupósta eins og stendur",
|
||||
"You're not receiving emails": "Þú færð ekki tölvupósta",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Þú færð ekki tölvupósta ýmist vegna þess að þú merktir síðustu skilaboð sem ruslpóst eða vegna þess að ekki er hægt að senda skilaboð á netfangið sem þú gafst upp.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Þér tókst að skrá þig inn",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Aðgangurinn þinn",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Ricevi una notifica quando qualcuno risponde ad un tuo commento",
|
||||
"Give feedback on this post": "Manda un feedback per questo post",
|
||||
"Help! I'm not receiving emails": "Aiuto! Non ricevo le email",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Se una newsletter viene segnalata come spam, le email per quell'indirizzo vengono disabilitate automaticamente, in modo che tu non riceva nessun messaggio indesiderato.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Se il reclamo per spam è stato commesso per errore, o nel caso tu voglia nuovamente ricevere le email, puoi iscriverti nuovamente cliccando il bottone nella schermata precedente.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Se annulli ora il tuo abbonamento, continuerai ad avere accesso fino al {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Al momento non ricevi nessuna email",
|
||||
"You're not receiving emails": "Non ricevi nessuna email",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Non ricevi email perché hai contrassegnato un messaggio recente come spam, o perché non è stato possibile recapitare i messaggi all'indirizzo email fornito.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Accesso effettuato.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Il tuo account",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "誰かがあなたのコメントに返信したときに通知を受ける",
|
||||
"Give feedback on this post": "この投稿にフィードバックを提供する",
|
||||
"Help! I'm not receiving emails": "助けてください!メールが受信できません",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "ニュースレターがスパムとして判定された場合、そのアドレスではメールが自動的に無効になり、望ましくないメッセージを受け取らないようになります。",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "スパムの判定が誤っていた場合、またはメールの受信を再開したい場合は、前の画面のボタンをクリックしてメールを再購読することができます。",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "今すぐ購読をキャンセルすると、{{periodEnd}}までアクセスできます。",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "現在、メールを受信していません",
|
||||
"You're not receiving emails": "メールを受信していません",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "最近のメッセージをスパムとして判定したか、提供されたメールアドレスに配信できなかったため、メールを受信していません。",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "ログインに成功しました",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "あなたのアカウント",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "댓글에 대한 답변이 올라오면 알림 받기",
|
||||
"Give feedback on this post": "이 게시물에 대한 의견 제공하기",
|
||||
"Help! I'm not receiving emails": "도와주세요! 이메일을 받지 못하고 있습니다",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "만약 뉴스레터가 스팸으로 표시되면, 더 이상 원하지 않는 메시지를 받지 않도록 해당 주소의 이메일이 자동으로 사용 중지됩니다.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "스팸 신고가 실수였거나 이메일을 다시 받기를 원하면, 이전 화면의 버튼을 클릭하여 이메일을 다시 구독할 수 있습니다.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "현재 이메일을 받지 않고 계십니다",
|
||||
"You're not receiving emails": "이메일을 받지 않고 계십니다",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "최근 메시지를 스팸으로 표시했거나 메시지를 제공된 이메일 주소로 전달할 수 없어 이메일을 받지 못하고 계십니다.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "성공적으로 로그인되었습니다.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "계정",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Хэн нэгэн таны сэтгэгдэлд хариу бичих үед мэдэгдэх",
|
||||
"Give feedback on this post": "Энэ нийтлэлд саналаа өгөх",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Таны имэйл хүлээж авахгүй байгаа шалтгаан нь нэг бол та аль нэг имэйлийг спам гэж тэмдэглэсэн, эсвэл таны хаяг имэйл хүлээж авах боломжгүй байна.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Таны бүртгэл",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Dapatkan pemberitahuan apabila seseorang membalas komen anda",
|
||||
"Give feedback on this post": "Berikan maklum balas mengenai pos ini",
|
||||
"Help! I'm not receiving emails": "Tolong! Saya tidak menerima e-mel",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Jika newsletter ditanda sebagai spam, e-mel akan dilumpuhkan secara automatik untuk alamat tersebut untuk memastikan anda tidak lagi menerima sebarang mesej yang tidak diingini.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Jika aduan spam itu tidak disengajakan, atau anda ingin mula menerima e-mel semula, anda boleh melanggan semula e-mel dengan mengklik butang pada skrin sebelumnya.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Jika anda membatalkan langganan anda sekarang, anda akan terus mendapat akses sehingga {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Anda kini tidak menerima e-mel",
|
||||
"You're not receiving emails": "Anda tidak menerima e-mel",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Anda tidak menerima e-mel kerana anda sama ada menandai mesej terkini sebagai spam, atau kerana mesej tidak dapat dihantar ke alamat e-mel yang diberikan.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Anda telah berjaya log masuk.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Akaun anda",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Blijf op de hoogte als iemand op jouw reactie reageert",
|
||||
"Give feedback on this post": "Deel je mening over dit artikel",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Je ontvangt geen e-mails omdat je ofwel een recent bericht als spam had gemarkeerd, of omdat de berichten niet verzonden konden worden naar jouw e-mailadres.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Je bent succesvol ingelogd.",
|
||||
"You've successfully subscribed to": "Je bent succesvol geabonneerd op",
|
||||
"Your account": "Jouw account",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Få varsler når nokon svarar på kommenten din",
|
||||
"Give feedback on this post": "Gje tilbakemeldinger på denne artikkelen",
|
||||
"Help! I'm not receiving emails": "Hjelp! Eg får ikkje e-postar",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Viss eit nyheitsbrev er markert som søppelpost vil dei automatisk bli avslutta for den adressa, slik at du ikkje får uønska e-postar.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Viss søppelpost-klagen var med eit uhell, eller du ønsker å byrja å få e-postar frå oss igjen, kan du abonnera på nyheitsbrev igjen ved å klikka knappen på førre skjerm.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Vis du avslutter abonnementet no, vil du framleis ha tilgang fram til {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "For augneblikket mottek du ingen e-postar",
|
||||
"You're not receiving emails": "Du mottek ikkje e-postar",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Du mottar ikkje e-postar. Anten fordi du har markert dei som spame, eller fordi dei ikkje kan bli levert til e-posten du har gitt oss.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Vellykka innlogging.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Din brukar",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Få varsel dersom noen svarer på kommentaren din",
|
||||
"Give feedback on this post": "Gi tilbakemelding på dette innlegget",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Du mottar ikke e-post fordi du enten nylig har merket en melding som spam, eller fordi meldinger ikke kunne leveres til den oppgitte e-postadressen din.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Din konto",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Otrzymaj powiadomienie gdy ktoś odpowie na twój komentarz",
|
||||
"Give feedback on this post": "Oceń ten wpis",
|
||||
"Help! I'm not receiving emails": "Pomocy! Nie otrzymuję emaili",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Jeśli newsletter zostanie oznaczony jako spam, wiadomości email są automatycznie wyłączane dla tego adresu, aby upewnić się, że nie otrzymujesz już żadnych niechcianych wiadomości.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Jeśli skarga dotycząca spamu była przypadkowa lub chcesz ponownie zacząć otrzymywać wiadomości, możesz raz jeszcze zasubskrybować, klikając przycisk na poprzednim ekranie.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Jeśli anulujesz subskrypcję teraz, będziesz mieć do niej dostęp do {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Obecnie nie otrzymujesz emaili",
|
||||
"You're not receiving emails": "Nie otrzymujesz emaili",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Nie otrzymujesz email, ponieważ oznaczyłeś ostatnią wiadomość jako spam lub nie udało się dostarczyć wiadomości na podany adres email.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Logowanie powiodło się.",
|
||||
"You've successfully subscribed to": "Pomyślnie zasubskrybowano",
|
||||
"Your account": "Twoje konto",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Receber notificação quando alguém responder seu comentário",
|
||||
"Give feedback on this post": "Enviar feedback sobre esta postagem",
|
||||
"Help! I'm not receiving emails": "Ajuda! Não estou recebendo e-mails",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Se uma newsletter for marcada como spam, os e-mails são automaticamente desativados para esse endereço para garantir que você não receba mais mensagens indesejadas.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Se a reclamação de spam foi acidental ou se você deseja começar a receber e-mails novamente, pode se inscrever novamente para receber e-mails clicando no botão na tela anterior.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Se você cancelar sua inscrição agora, continuará tendo acesso até {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Você não está recebendo e-mails no momento",
|
||||
"You're not receiving emails": "Você não está recebendo e-mails",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Você não está recebendo e-mails porque, ou classificou uma mensagem recente como spam, ou as mensagens não puderam ser entregues no endereço de e-mail que você forneceu.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Você entrou com sucesso.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Sua conta",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Ser notificado quando alguém responde a um comentário teu",
|
||||
"Give feedback on this post": "Dar feedback a este artigo",
|
||||
"Help! I'm not receiving emails": "Ajuda! Não estou a receber emails",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Se uma newsletter for marcada como spam, os emails serão automaticamente desativados para esse endereço para garantir que não receberá mais mensagens indesejadas.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Se a queixa de spam foi acidental, ou se gostaria de começar a receber emails novamente, pode voltar a subscrever os emails clicando no botão na tela anterior.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Se cancelar a sua subscrição agora, continuará a ter acesso até {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Você não está recebendo emails no momento",
|
||||
"You're not receiving emails": "Você não está recebendo Emails",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Não está a receber emails porque, ou classificou uma mensagem recente como spam, ou as mensagens não puderam ser entregues no endereço de email que você forneceu.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Você entrou com sucesso.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "A tua conta",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Primește notificare când cineva răspunde la comentariul tău",
|
||||
"Give feedback on this post": "Oferă feedback despre acest articol",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Nu primești emailuri deoarece fie ai marcat un mesaj recent ca spam, fie pentru că mesajele nu pot fi livrate la adresa ta de email furnizată.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Contul tău",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Оповещать, когда кто-то отвечает на ваш комментарий",
|
||||
"Give feedback on this post": "Оставить отзыв на эту публикацию",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Вы не получаете письма, так как либо вы пометили недавнее сообщение как спам, либо сообщения не могут быть доставлены на указанный вами email.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Ваш аккаунт",
|
||||
|
|
|
@ -1,31 +1,31 @@
|
|||
{
|
||||
"{{amount}} characters left": "තව වචන {{amount}} යි.",
|
||||
"{{amount}} comments": "අදහස් {{amount}} යි.",
|
||||
"{{amount}} days ago": "දින {{amount}} ට පෙර",
|
||||
"{{amount}} hours ago": "පැය {{amount}} ට පෙර",
|
||||
"{{amount}} minutes ago": "මිනිත්තු {{amount}} ට පෙර",
|
||||
"{{amount}} months ago": "මාස {{amount}} ට පෙර",
|
||||
"{{amount}} seconds ago": "තත්ත්පර {{amount}} ට පෙර",
|
||||
"{{amount}} weeks ago": "සති {{amount}} ට පෙර",
|
||||
"{{amount}} years ago": "අවුරුදු {{amount}} ට පෙර",
|
||||
"{{amount}} comments": "අදහ\u200bස් {{amount}} යි.",
|
||||
"{{amount}} days ago": "දින {{amount}} ට පෙ\u200bර",
|
||||
"{{amount}} hours ago": "පැය {{amount}} ට පෙ\u200bර",
|
||||
"{{amount}} minutes ago": "මිනිත්තු {{amount}} ට පෙ\u200bර",
|
||||
"{{amount}} months ago": "මාස {{amount}} ට පෙ\u200bර",
|
||||
"{{amount}} seconds ago": "තත්ත්පර {{amount}} ට පෙ\u200bර",
|
||||
"{{amount}} weeks ago": "සති {{amount}} ට පෙ\u200bර",
|
||||
"{{amount}} years ago": "අවුරුදු {{amount}} ට පෙ\u200bර",
|
||||
"1 comment": "1 අදහසයි.",
|
||||
"Add comment": "අදහස් එකතු කරන්න",
|
||||
"Add comment": "අදහස් එකතු කරන්\u200bන",
|
||||
"Add context to your comment, share your name and expertise to foster a healthy discussion.": "",
|
||||
"Add reply": "ප්රතිචාර එකතු කරන්න",
|
||||
"Add reply": "ප්\u200dරතිචාර එකතු කරන්\u200bන",
|
||||
"Already a member?": "දැනටමත් සාමාජිකයෙක්ද ?",
|
||||
"Anonymous": "නිර්නාමික",
|
||||
"Become a member of {{publication}} to start commenting.": "",
|
||||
"Become a paid member of {{publication}} to start commenting.": "",
|
||||
"Cancel": "අවලංගු කරන්න",
|
||||
"Comment": "අදහස",
|
||||
"Complete your profile": "ඔබගේ ගිණුම සම්පූර්ණ කරන්න",
|
||||
"Delete": "Delete කරන්න",
|
||||
"Deleted member": "සාමාජිකයාව delete කරන්න",
|
||||
"Discussion": "සාකච්ඡාව",
|
||||
"Cancel": "අවලංගු කරන්\u200bන\u200b",
|
||||
"Comment": "අදහ\u200bස",
|
||||
"Complete your profile": "ඔබගේ ගිණුම සම්පූර්ණ කරන්\u200bන",
|
||||
"Delete": "Delete කරන්\u200bන",
|
||||
"Deleted member": "සාමාජිකයාව delete කරන්\u200bන",
|
||||
"Discussion": "සාකච්ඡා\u200bව",
|
||||
"Edit": "සංස්කරණය කරන්න",
|
||||
"Edit this comment": "අදහස සංස්කරණය කරන්න",
|
||||
"Edited": "සංස්කරණය කරන ලද.",
|
||||
"Enter your name": "ඔබගේ නම සඳහන් කරන්න",
|
||||
"Enter your name": "ඔබගේ නම සඳහන් කරන්\u200bන",
|
||||
"Expertise": "",
|
||||
"Founder @ Acme Inc": "",
|
||||
"Full-time parent": "",
|
||||
|
@ -39,22 +39,22 @@
|
|||
"Member discussion": "",
|
||||
"Name": "",
|
||||
"Neurosurgeon": "",
|
||||
"One day ago": "දිනකට පෙර",
|
||||
"One hour ago": "පැයකට පෙර",
|
||||
"One minute ago": "මිනිත්තුවකට පෙර",
|
||||
"One month ago": "මසකට පෙර",
|
||||
"One week ago": "සතියකට පෙර",
|
||||
"One year ago": "අවුරුද්දකට පෙර",
|
||||
"Reply": "ප්රතිචාර දක්වන්න",
|
||||
"Reply to comment": "අදහසට රතිචාර දක්වන්න",
|
||||
"Report": "වාර්තා කරන්න",
|
||||
"Report comment": "අදහසට වාර්තා කරන්න",
|
||||
"Report this comment": "මෙම අදහසට වාර්තා කරන්න",
|
||||
"One day ago": "දිනකට පෙ\u200bර",
|
||||
"One hour ago": "පැයකට පෙ\u200bර",
|
||||
"One minute ago": "මිනිත්තුවකට පෙ\u200bර",
|
||||
"One month ago": "මසකට පෙ\u200bර",
|
||||
"One week ago": "සතියකට පෙ\u200bර",
|
||||
"One year ago": "අවුරුද්දකට පෙ\u200bර",
|
||||
"Reply": "ප්\u200dරතිචාර දක්වන්\u200bන",
|
||||
"Reply to comment": "අදහසට \u200dරතිචාර දක්වන්\u200bන",
|
||||
"Report": "වාර්තා කරන්\u200bන",
|
||||
"Report comment": "අදහසට වාර්තා කරන්\u200bන",
|
||||
"Report this comment": "මෙම අදහසට වාර්තා කරන්\u200bන",
|
||||
"Report this comment?": "මෙම අදහසට වාර්තා කරන්නෙහිද ?",
|
||||
"Save": "සුරකින්න",
|
||||
"Sending": "යවමින්",
|
||||
"Save": "සුරකින්\u200bන",
|
||||
"Sending": "යවමි\u200bන්",
|
||||
"Sent": "යැව්වා",
|
||||
"Show": "පෙන්වන්න",
|
||||
"Show": "පෙන්වන්\u200bන",
|
||||
"Show {{amount}} more replies": "",
|
||||
"Show {{amount}} previous comments": "",
|
||||
"Show 1 more reply": "",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "ඔබේ ප්\u200dරතිචාරයට යම් අයෙකු පිළිතුරු දුන් විට දැනුම් දෙන්න",
|
||||
"Give feedback on this post": "මෙම post එකට ඔබේ අදහස එක් කරන්න",
|
||||
"Help! I'm not receiving emails": "සහාය අවශ්\u200dයයයි! මට emails ලැබෙන්නේ නැහැ.",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Newsletter එකක් spam ලෙස flag වුවහොත්, එම email ලිපිනයට emails ලැබීම ස්ව්\u200dයංක්\u200dරීයවම අක්\u200dරීය කිරීම හරහා ඔබට අනව්\u200dයශ්\u200dයය messages ලැබීම නතර වන බව සහතික කෙරෙනු ඇත.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Spam සඳහා කළ පැමිණිල්ල අත්වැරදීමකින් සිදු වූවක් හෝ, ඔබ නැවතත් emails ලබාගැනීමට කැමැත්තෙන් සිටින්නේ නම්, පෙර screen එකේ ඇති button එක හරහා emails වලට නැවත subscribe කිරීමේ හැකියාව ඇත.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "ඔබගේ subscription එක මෙම මොහොතේ cancel කළහොත්, {{periodEnd}} දක්වා ඔබ\u200dගේ access නොවෙනස්ව පවතිනු ඇත.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "මේ වන විට ඔබට email ලැබෙන්නේ නැත",
|
||||
"You're not receiving emails": "ඔබට email ලැබෙන්නේ නැත",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "මෑතකදී ලැබුණු email පණිවිඩයක් spam ලෙස සටහන් කිරීම නිසා හෝ ඔබ ලබාදී ඇති email ලිපිනයට email පණිවිඩ යැවිය නොහැකි නිසාවෙන් ඔබට email ලැබෙන්නේ නැත.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "ඔබ සාර්ථකව sign in වන ලදී.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "ඔබගේ ගිණුම",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Prejmite obvestilo, ko nekdo odgovori na vaš komentar",
|
||||
"Give feedback on this post": "Podajte povratne informacije o tej objavi",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Ne prejemate e-poštnih sporočil, ker ste naše sporočilo nedavno označili kot neželeno pošto ali, ker sporočil ni bilo mogoče dostaviti na vaš e-poštni naslov.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Vaš račun",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "",
|
||||
"Give feedback on this post": "Ler nje koment ne kete post",
|
||||
"Help! I'm not receiving emails": "Ndihme! Nuk po marr emaile",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Nëse një buletin shënohet si i padëshiruar, emailet çaktivizohen automatikisht për atë adresë për t'u siguruar që nuk do të merrni më mesazhe të padëshiruara.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Nëse ankesa për postën e padëshiruar ishte aksidentale, ose dëshironi të filloni të merrni përsëri email, mund të regjistroheni përsëri në email duke klikuar butonin në ekranin e mëparshëm.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Nëse e anuloni abonimin tuaj tani, do të vazhdoni të keni akses deri në {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Aktualisht nuk po merrni emaile",
|
||||
"You're not receiving emails": "Ju nuk po merrni emaile",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Ju nuk po merrni email sepse ose keni shënuar një mesazh të fundit si të padëshiruar, ose sepse mesazhet nuk mund të dërgoheshin në adresën tuaj të emailit të dhënë.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Ju jeni identifikuar me sukses.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Llogaria juar",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Obavestite me ako neko odgovori na moj komentar:",
|
||||
"Give feedback on this post": "Ostavite komentar na ovaj post",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Ne primate e-poruke zato što ste nedavnu poruku označili kao nepoželjnu ili zato što poruke nisu mogle da se isporuče na adresu e-pošte koju ste naveli.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Vaš nalog",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Få en avisering när någon svarar på din kommentar",
|
||||
"Give feedback on this post": "Ge feedback på det här inlägget",
|
||||
"Help! I'm not receiving emails": "Hjälp! Jag får inte e-posten",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Om ett nyhetsbrev markeras som skräppost, stängs utskicken till den e-postadressen av automatiskt för att det inte skall skickas ovälkomna meddelanden.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Om nyhetsbrevet av misstag markerades som skräppost och du vill återuppta utskicken kan du aktivera nyhetsbrevet på föregående sida.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Om du säger upp prenumerationen nu kommer du att ha tillgång till {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Du tar för närvarande inte emot e-post",
|
||||
"You're not receiving emails": "Du tar inte emot e-post",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Du får inte e-postmeddelanden eftersom du antingen markerade ett nyligt meddelande som skräppost, eller för att meddelanden inte kunde levereras till din angivna e-postadress.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Du är nu inloggad.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Ditt konto",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Birisi yorumuna cevap yazdığında bildirim al",
|
||||
"Give feedback on this post": "Gönderiye geri bildirim ver",
|
||||
"Help! I'm not receiving emails": "Yardım! e-postası alamıyorum",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Bir haber bülteni spam olarak işaretlenirse, artık istenmeyen mesaj almadığınızdan emin olmak için bu adres için e-postalar otomatik olarak devre dışı bırakılır.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Spam şikayeti yanlışlıkla olduysa veya tekrar e-posta almaya başlamak istiyorsanız, önceki ekrandaki düğmeyi tıklayarak e-postalara yeniden abone olabilirsiniz.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Aboneliğinizi şimdi iptal ederseniz, {{periodEnd}} tarihine kadar erişiminiz devam edecek.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Şu anda e-posta almıyorsunuz",
|
||||
"You're not receiving emails": "E-posta almıyorsunuz",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "E-postaları almıyorsun çünkü yakınlarda gönderilen bir mesajı spam olarak işaretledin ya da mesajlar verilen e-posta adresine teslim edilemedi.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Başarıyla oturum açtınız.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Hesabın",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Повідомляй коли хтось відповість на твій коментар",
|
||||
"Give feedback on this post": "Дати відгук на цю публікацію",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Не приходять листи, оскільки останній отриманий лист був тобою позначений як спам, або листи не можуть бути доставлені на твою адресу електронної пошти.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Твій обліковий запис",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Kimdir sharhingizga javob bersa, bildirishnoma oling",
|
||||
"Give feedback on this post": "Ushbu post haqida fikr bildiring",
|
||||
"Help! I'm not receiving emails": "",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "",
|
||||
"You're not receiving emails": "",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Siz e-pochta xabarlarini olmayapsiz, chunki siz oxirgi xabarni spam deb belgilagansiz yoki xabarlar taqdim etilgan elektron pochta manzilingizga yetkazilmagan.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Sizning hisobingiz",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "Nhận thông báo khi có ai đó trả lời bình luận",
|
||||
"Give feedback on this post": "Phản hồi bài viết này",
|
||||
"Help! I'm not receiving emails": "Giúp tôi! Tôi không nhận được email",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "Nếu một bản tin bị gắn nhãn thư rác, email sẽ tự động bị vô hiệu hóa đối với địa chỉ đó để đảm bảo bạn không còn nhận được bất kỳ email không mong muốn nào nữa.",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "Nếu khiếu nại về thư rác là vô tình hoặc bạn muốn bắt đầu nhận lại email, bạn có thể đăng ký lại email bằng cách nhấp vào nút trên màn hình trước đó.",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "Nếu bạn hủy đăng ký ngay bây giờ, bạn sẽ tiếp tục có quyền truy cập cho đến {{periodEnd}}.",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "Những email bạn không nhận được gần đây",
|
||||
"You're not receiving emails": "Bạn không nhận được email",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "Bạn không nhận được email vì bạn đã đánh dấu một email gần đây là thư rác, hoặc vì không thể gửi đến địa chỉ email bạn đã cung cấp.",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "Bạn đã đăng nhập.",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "Tài khoản của bạn",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "當有人回覆我的留言時通知我",
|
||||
"Give feedback on this post": "為這篇文章提供意見",
|
||||
"Help! I'm not receiving emails": "求救!我沒有收到 email",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "如果有電子報被標記為垃圾郵件,您的 email 地址將自動停止接收該電子報,以確保您不再收到任何不需要的訊息。",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "如果您不小心將電子報標示成垃圾郵件,或者您希望重新開始接收電子報,您可以點擊前一個畫面上的按鈕以重新訂閱電子報。",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "如果現在取消訂閱,您在 {{periodEnd}} 之前仍可存取內容。",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "您目前無法接收郵件。",
|
||||
"You're not receiving emails": "您無法接收郵件。",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "您無法接收郵件,可能是因為您最近將某個郵件標記為垃圾郵件,或者郵件無法發送到您提供的 email 地址。",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "您已成功登入。",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "您的帳號",
|
||||
|
|
|
@ -62,6 +62,7 @@
|
|||
"Get notified when someone replies to your comment": "当有人回复您的评论时,将会收到通知",
|
||||
"Give feedback on this post": "对这篇文章提供建议",
|
||||
"Help! I'm not receiving emails": "求助!我没有收到电子邮件",
|
||||
"Here are a few other sites {{siteTitle}} thinks you may enjoy.": "",
|
||||
"If a newsletter is flagged as spam, emails are automatically disabled for that address to make sure you no longer receive any unwanted messages.": "如果有快报被标记为垃圾邮件,则自动拒绝该地址的邮件以确保后续不再接收不想要的消息。",
|
||||
"If the spam complaint was accidental, or you would like to begin receiving emails again, you can resubscribe to emails by clicking the button on the previous screen.": "如果误标记为垃圾邮件,或者您希望再次开启邮件接收,您可以通过点击上一页的按钮重新订阅。",
|
||||
"If you cancel your subscription now, you will continue to have access until {{periodEnd}}.": "如果现在取消订阅,当前订阅在{{periodEnd}}依旧有效。",
|
||||
|
@ -144,6 +145,7 @@
|
|||
"You're currently not receiving emails": "您当前不会接收电子邮件。",
|
||||
"You're not receiving emails": "您当前不会接收电子邮件。",
|
||||
"You're not receiving emails because you either marked a recent message as spam, or because messages could not be delivered to your provided email address.": "您收不到电子邮件是因为您可能将最近的某个消息标记为垃圾邮件,或者无法将消息发送到您提供的电子邮件地址。",
|
||||
"You're subscribed!": "",
|
||||
"You've successfully signed in.": "您已成功登录。",
|
||||
"You've successfully subscribed to": "",
|
||||
"Your account": "您的账户",
|
||||
|
|
Loading…
Add table
Reference in a new issue