Translations - Crowdin, Set workspace member locale on signup, and optimizations (#10091)
More progress on translations: - Migrate from translations.io to crowdin - Optimize performance and robustness - Set workspaceMember/user locale upon signup
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import { i18n } from '@lingui/core';
|
||||
import { i18n, Messages } from '@lingui/core';
|
||||
import { I18nProvider } from '@lingui/react';
|
||||
import { Container, Html } from '@react-email/components';
|
||||
import { PropsWithChildren } from 'react';
|
||||
@ -6,36 +6,43 @@ import { PropsWithChildren } from 'react';
|
||||
import { BaseHead } from 'src/components/BaseHead';
|
||||
import { Logo } from 'src/components/Logo';
|
||||
import { APP_LOCALES } from 'twenty-shared';
|
||||
import { messages as deMessages } from '../locales/generated/de';
|
||||
import { messages as deMessages } from '../locales/generated/de-DE';
|
||||
import { messages as enMessages } from '../locales/generated/en';
|
||||
import { messages as esMessages } from '../locales/generated/es';
|
||||
import { messages as frMessages } from '../locales/generated/fr';
|
||||
import { messages as itMessages } from '../locales/generated/it';
|
||||
import { messages as jaMessages } from '../locales/generated/ja';
|
||||
import { messages as koMessages } from '../locales/generated/ko';
|
||||
import { messages as esMessages } from '../locales/generated/es-ES';
|
||||
import { messages as frMessages } from '../locales/generated/fr-FR';
|
||||
import { messages as itMessages } from '../locales/generated/it-IT';
|
||||
import { messages as jaMessages } from '../locales/generated/ja-JP';
|
||||
import { messages as koMessages } from '../locales/generated/ko-KR';
|
||||
import { messages as pseudoEnMessages } from '../locales/generated/pseudo-en';
|
||||
import { messages as ptBRMessages } from '../locales/generated/pt-BR';
|
||||
import { messages as ptPTMessages } from '../locales/generated/pt-PT';
|
||||
import { messages as zhHansMessages } from '../locales/generated/zh-Hans';
|
||||
import { messages as zhHantMessages } from '../locales/generated/zh-Hant';
|
||||
import { messages as zhHansMessages } from '../locales/generated/zh-CN';
|
||||
import { messages as zhHantMessages } from '../locales/generated/zh-TW';
|
||||
|
||||
type BaseEmailProps = PropsWithChildren<{
|
||||
width?: number;
|
||||
locale: keyof typeof APP_LOCALES;
|
||||
}>;
|
||||
const messages: Record<keyof typeof APP_LOCALES, Messages> = {
|
||||
en: enMessages,
|
||||
'pseudo-en': pseudoEnMessages,
|
||||
'fr-FR': frMessages,
|
||||
'ko-KR': koMessages,
|
||||
'de-DE': deMessages,
|
||||
'it-IT': itMessages,
|
||||
'es-ES': esMessages,
|
||||
'ja-JP': jaMessages,
|
||||
'pt-PT': ptPTMessages,
|
||||
'pt-BR': ptBRMessages,
|
||||
'zh-CN': zhHansMessages,
|
||||
'zh-TW': zhHantMessages,
|
||||
};
|
||||
|
||||
i18n.load('en', enMessages);
|
||||
i18n.load('fr', frMessages);
|
||||
i18n.load('pseudo-en', pseudoEnMessages);
|
||||
i18n.load('ko', koMessages);
|
||||
i18n.load('de', deMessages);
|
||||
i18n.load('it', itMessages);
|
||||
i18n.load('es', esMessages);
|
||||
i18n.load('ja', jaMessages);
|
||||
i18n.load('pt-PT', ptPTMessages);
|
||||
i18n.load('pt-BR', ptBRMessages);
|
||||
i18n.load('zh-Hans', zhHansMessages);
|
||||
i18n.load('zh-Hant', zhHantMessages);
|
||||
(Object.entries(messages) as [keyof typeof APP_LOCALES, any][]).forEach(
|
||||
([locale, message]) => {
|
||||
i18n.load(locale, message);
|
||||
},
|
||||
);
|
||||
|
||||
i18n.activate('en');
|
||||
|
||||
|
||||
120
packages/twenty-emails/src/locales/af-ZA.po
Normal file
120
packages/twenty-emails/src/locales/af-ZA.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: af\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Afrikaans\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: af\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/ar-SA.po
Normal file
120
packages/twenty-emails/src/locales/ar-SA.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: ar\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: ar\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/ca-ES.po
Normal file
120
packages/twenty-emails/src/locales/ca-ES.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: ca\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: ca\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/cs-CZ.po
Normal file
120
packages/twenty-emails/src/locales/cs-CZ.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: cs\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Czech\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: cs\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/da-DK.po
Normal file
120
packages/twenty-emails/src/locales/da-DK.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: da\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Danish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: da\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: de\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: German\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: de\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "Bestätigen Sie Ihre E-Mail-Adresse"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "Mit Twenty verbinden"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "Sehr geehrte/r {userName}"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "hat Sie eingeladen, einem Workspace namens "
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "Hallo"
|
||||
@ -75,10 +94,18 @@ msgstr "Der Workspace wird in {remainingDays} {dayOrDays} deaktiviert, und alle
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "Dies ist eine Bestätigung, dass das Passwort für Ihr Konto ({email}) am {formattedDate} erfolgreich geändert wurde."
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "Dieser Link ist nur für die nächsten {duration} gültig. Wenn der Link nicht funktioniert, können Sie den Anmeldebestätigungslink direkt verwenden:"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "Aktualisieren Sie Ihr Abonnement"
|
||||
@ -91,6 +118,3 @@ msgstr "E-Mail verifizieren"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "Ihr Workspace <0>{workspaceDisplayName}</0> wurde gelöscht, da Ihr Abonnement vor {inactiveDaysBeforeDelete} Tagen abgelaufen ist."
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "hat Sie eingeladen, einem Workspace namens "
|
||||
120
packages/twenty-emails/src/locales/el-GR.po
Normal file
120
packages/twenty-emails/src/locales/el-GR.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: el\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Greek\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: el\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: es\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: es\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "Confirma tu dirección de correo electrónico"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "Conéctate a Twenty"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "Estimado/a {userName}"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "te ha invitado a unirte a un espacio de trabajo llamado "
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "Hola"
|
||||
@ -75,10 +94,18 @@ msgstr "El espacio de trabajo se desactivará en {remainingDays} {dayOrDays} y s
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "Esta es una confirmación de que la contraseña de tu cuenta ({email}) se cambió correctamente el {formattedDate}."
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "Este enlace solo es válido por los próximos {duration}. Si el enlace no funciona, puedes usar directamente el enlace de verificación de inicio de sesión:"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "Actualiza tu suscripción"
|
||||
@ -91,6 +118,3 @@ msgstr "Verificar correo electrónico"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "Tu espacio de trabajo <0>{workspaceDisplayName}</0> ha sido eliminado porque tu suscripción caducó hace {inactiveDaysBeforeDelete} días."
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "te ha invitado a unirte a un espacio de trabajo llamado "
|
||||
120
packages/twenty-emails/src/locales/fi-FI.po
Normal file
120
packages/twenty-emails/src/locales/fi-FI.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: fi\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: fi\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: fr\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: French\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: fr\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "Confirmez votre adresse e-mail"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "Connectez-vous à Twenty"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "Cher {userName}"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "vous a invité à rejoindre un espace de travail appelé "
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "Bonjour"
|
||||
@ -75,10 +94,18 @@ msgstr "L'espace de travail sera désactivé dans {remainingDays} {dayOrDays} et
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "Ceci est une confirmation que le mot de passe de votre compte ({email}) a été modifié avec succès le {formattedDate}."
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "Ce lien n'est valable que pour les {duration} suivants. Si le lien ne fonctionne pas, vous pouvez utiliser directement le lien de vérification de connexion :"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "Mettez à jour votre abonnement"
|
||||
@ -91,6 +118,3 @@ msgstr "Vérifiez l'e-mail"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "Votre espace de travail <0>{workspaceDisplayName}</0> a été supprimé car votre abonnement a expiré il y a {inactiveDaysBeforeDelete} jours."
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "vous a invité à rejoindre un espace de travail appelé "
|
||||
120
packages/twenty-emails/src/locales/he-IL.po
Normal file
120
packages/twenty-emails/src/locales/he-IL.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: he\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: he\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/hu-HU.po
Normal file
120
packages/twenty-emails/src/locales/hu-HU.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: hu\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: hu\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: it\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Italian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: it\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "Conferma il tuo indirizzo e-mail"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "Accedi a Twenty"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "Gentile {userName}"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "ti ha invitato a unirti a uno spazio di lavoro chiamato "
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "Salve"
|
||||
@ -75,10 +94,18 @@ msgstr "L'area di lavoro sarà disattivata in {remainingDays} {dayOrDays} e tutt
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "Questa è la conferma che la password del tuo account ({email}) è stata modificata con successo in data {formattedDate}."
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "Questo link è valido solo per i prossimi {duration}. Se il link non funziona, puoi utilizzare direttamente il link di verifica del login:"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "Aggiorna il tuo abbonamento"
|
||||
@ -91,6 +118,3 @@ msgstr "Verifica e-mail"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "Il tuo spazio di lavoro <0>{workspaceDisplayName}</0> è stato cancellato poiché il tuo abbonamento è scaduto {inactiveDaysBeforeDelete} giorni fa."
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "ti ha invitato a unirti a uno spazio di lavoro chiamato "
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: ja\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: ja\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "メールアドレスを確認"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "Twentyに接続"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "{userName}様"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "というワークスペースに招待されました。"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "こんにちは"
|
||||
@ -75,10 +94,18 @@ msgstr "ワークスペースは{remainingDays} {dayOrDays}後に無効化され
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "アカウント({email})のパスワードが{formattedDate}に正常に変更されたことを確認しました。"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "このリンクは{duration}のみ有効です。リンクが機能しない場合は、ログイン認証リンクを直接ご利用ください:"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "サブスクリプションを更新"
|
||||
@ -91,6 +118,3 @@ msgstr "メールを確認"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "サブスクリプションが{inactiveDaysBeforeDelete}日前に期限切れとなったため、ワークスペース<0>{workspaceDisplayName}</0>が削除されました。"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "というワークスペースに招待されました。"
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: ko\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Korean\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: ko\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "이메일 주소를 확인하세요"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "Twenty에 연결하세요"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "{userName}님께"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "라는 워크스페이스에 초대되었습니다 "
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "안녕하세요"
|
||||
@ -75,10 +94,18 @@ msgstr "워크스페이스는 {remainingDays} {dayOrDays} 후에 비활성화되
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "계정({email})의 비밀번호가 {formattedDate}에 성공적으로 변경되었음을 확인합니다."
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "이 링크는 다음 {duration} 동안만 유효합니다. 링크가 작동하지 않으면 로그인 인증 링크를 직접 사용할 수 있습니다:"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "구독을 업데이트하세요"
|
||||
@ -91,6 +118,3 @@ msgstr "이메일 인증"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "구독이 {inactiveDaysBeforeDelete}일 전에 만료되어 워크스페이스 <0>{workspaceDisplayName}</0>이(가) 삭제되었습니다."
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "라는 워크스페이스에 초대되었습니다 "
|
||||
120
packages/twenty-emails/src/locales/nl-NL.po
Normal file
120
packages/twenty-emails/src/locales/nl-NL.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: nl\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: nl\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/no-NO.po
Normal file
120
packages/twenty-emails/src/locales/no-NO.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: no\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Norwegian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: no\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/pl-PL.po
Normal file
120
packages/twenty-emails/src/locales/pl-PL.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: pl\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Polish\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: pl\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: pt-BR\n"
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese, Brazilian\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: pt-BR\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "Confirme seu endereço de e-mail"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "Conecte-se ao Twenty"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "Caro {userName}"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "convidou você para participar de um workspace chamado "
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "Olá"
|
||||
@ -75,10 +94,18 @@ msgstr "O workspace será desativado em {remainingDays} {dayOrDays}, e todos os
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "Esta é uma confirmação de que a senha da sua conta ({email}) foi alterada com sucesso em {formattedDate}."
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "Este link é válido apenas para os próximos {duration}. Se o link não funcionar, você pode usar o link de verificação de login diretamente:"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "Atualize sua assinatura"
|
||||
@ -91,6 +118,3 @@ msgstr "Verificar e-mail"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "Seu workspace <0>{workspaceDisplayName}</0> foi excluído porque sua assinatura expirou há {inactiveDaysBeforeDelete} dias."
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "convidou você para participar de um workspace chamado "
|
||||
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: pt-PT\n"
|
||||
"Language: pt\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: pt\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "Confirme o seu endereço de e-mail"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "Conecte-se ao Twenty"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "Caro {userName}"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "convidou-o a juntar-se a um workspace chamado "
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "Olá"
|
||||
@ -75,10 +94,18 @@ msgstr "O workspace será desativado em {remainingDays} {dayOrDays} e todos os s
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "Esta é uma confirmação de que a palavra-passe da sua conta ({email}) foi alterada com sucesso em {formattedDate}."
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "Este link só é válido para os próximos {duration}. Se o link não funcionar, pode usar diretamente o link de verificação de login:"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "Atualize a sua subscrição"
|
||||
@ -91,6 +118,3 @@ msgstr "Verifique o e-mail"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "O seu workspace <0>{workspaceDisplayName}</0> foi eliminado porque a sua subscrição expirou há {inactiveDaysBeforeDelete} dias."
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "convidou-o a juntar-se a um workspace chamado "
|
||||
|
||||
120
packages/twenty-emails/src/locales/ro-RO.po
Normal file
120
packages/twenty-emails/src/locales/ro-RO.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: ro\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Romanian\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: ro\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/ru-RU.po
Normal file
120
packages/twenty-emails/src/locales/ru-RU.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: ru\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian\n"
|
||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: ru\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/sr-Cyrl.po
Normal file
120
packages/twenty-emails/src/locales/sr-Cyrl.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: sr_Cyrl\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Serbian (Cyrillic)\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: sr-Cyrl\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/sv-SE.po
Normal file
120
packages/twenty-emails/src/locales/sv-SE.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: sv\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: sv\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/tr-TR.po
Normal file
120
packages/twenty-emails/src/locales/tr-TR.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: tr\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Turkish\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: tr\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/uk-UA.po
Normal file
120
packages/twenty-emails/src/locales/uk-UA.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: uk\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: uk\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
120
packages/twenty-emails/src/locales/vi-VN.po
Normal file
120
packages/twenty-emails/src/locales/vi-VN.po
Normal file
@ -0,0 +1,120 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: vi\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:24\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: vi\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:33
|
||||
msgid "All data in this workspace has been permanently deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:22
|
||||
msgid "Confirm your email address"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:46
|
||||
msgid "Connect to Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:40
|
||||
msgid "If you did not initiate this change, please contact your workspace owner immediately."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:46
|
||||
msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:36
|
||||
msgid "If you wish to use Twenty again, you can create a new workspace."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:34
|
||||
msgid "It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:42
|
||||
msgid "Join your team on Twenty"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:29
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:24
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:23
|
||||
msgid "Reset your password 🗝"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:27
|
||||
msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:40
|
||||
msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:34
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/send-email-verification-link.email.tsx:23
|
||||
msgid "Verify Email"
|
||||
msgstr ""
|
||||
|
||||
#: src/emails/clean-suspended-workspace.email.tsx:27
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr ""
|
||||
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: zh-Hans\n"
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: zh-CN\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "确认您的邮箱地址"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "连接 Twenty"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "亲爱的 {userName}"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "邀请您加入名为"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "您好"
|
||||
@ -75,10 +94,18 @@ msgstr "工作区将在 {remainingDays} {dayOrDays} 后停用,其所有数据
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "确认您的账户({email})密码已在 {formattedDate} 成功更改。"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "此链接仅在接下来的 {duration} 内有效。如果链接无效,您可以直接使用登录验证链接:"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "更新您的订阅"
|
||||
@ -91,6 +118,3 @@ msgstr "验证邮箱"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "您的工作区 <0>{workspaceDisplayName}</0> 已被删除,因为您的订阅已于 {inactiveDaysBeforeDelete} 天前过期。"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "邀请您加入名为"
|
||||
@ -1,11 +1,22 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2025-02-02 20:44+0100\n"
|
||||
"POT-Creation-Date: 2025-02-01 18:53+0100\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: @lingui/cli\n"
|
||||
"Language: zh-Hant\n"
|
||||
"Language: zh\n"
|
||||
"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"PO-Revision-Date: 2025-02-09 12:39\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Chinese Traditional\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n"
|
||||
"X-Crowdin-Project-ID: 1\n"
|
||||
"X-Crowdin-Language: zh-TW\n"
|
||||
"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n"
|
||||
"X-Crowdin-File-ID: 27\n"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:57
|
||||
msgid "Accept invite"
|
||||
@ -23,10 +34,18 @@ msgstr "確認您的電子郵件地址"
|
||||
msgid "Connect to Twenty"
|
||||
msgstr "連接到 Twenty"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
#~ msgid "Dear"
|
||||
#~ msgstr "Dear"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Dear {userName}"
|
||||
msgstr "親愛的 {userName}"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "已邀請您加入名為"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:24
|
||||
msgid "Hello"
|
||||
msgstr "您好"
|
||||
@ -75,10 +94,18 @@ msgstr "工作區將在 {remainingDays} {dayOrDays} 後停用,所有數據將
|
||||
msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}."
|
||||
msgstr "這是確認您的帳戶({email})的密碼已於 {formattedDate} 成功更改。"
|
||||
|
||||
#: src/emails/password-update-notify.email.tsx:36
|
||||
#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately."
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:26
|
||||
msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:"
|
||||
msgstr "此鏈接僅在接下來的 {duration} 內有效。如果鏈接無效,您可以直接使用登錄驗證鏈接:"
|
||||
|
||||
#: src/emails/password-reset-link.email.tsx:28
|
||||
#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>"
|
||||
|
||||
#: src/emails/warn-suspended-workspace.email.tsx:53
|
||||
msgid "Update your subscription"
|
||||
msgstr "更新您的訂閱"
|
||||
@ -91,6 +118,3 @@ msgstr "驗證電子郵件"
|
||||
msgid "Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago."
|
||||
msgstr "由於您的訂閱已於 {inactiveDaysBeforeDelete} 天前過期,您的工作區 <0>{workspaceDisplayName}</0> 已被刪除。"
|
||||
|
||||
#: src/emails/send-invite-link.email.tsx:50
|
||||
msgid "has invited you to join a workspace called "
|
||||
msgstr "已邀請您加入名為"
|
||||
Reference in New Issue
Block a user