From f38a25412e69a2a07cf5ff362af17cd65a62f07a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Fri, 17 Jan 2025 12:50:28 +0100 Subject: [PATCH] Add more translations (#9707) As per title --- .cursorrules | 7 + .eslintrc.cjs | 14 +- packages/twenty-front/.eslintrc.cjs | 50 +++ packages/twenty-front/lingui.config.ts | 2 +- packages/twenty-front/src/locales/de.po | 362 ++++++++++++++--- packages/twenty-front/src/locales/en.po | 378 +++++++++++++++--- packages/twenty-front/src/locales/es.po | 362 ++++++++++++++--- packages/twenty-front/src/locales/fr.po | 362 ++++++++++++++--- .../twenty-front/src/locales/generated/de.ts | 2 +- .../twenty-front/src/locales/generated/en.ts | 2 +- .../twenty-front/src/locales/generated/es.ts | 2 +- .../twenty-front/src/locales/generated/fr.ts | 2 +- .../twenty-front/src/locales/generated/it.ts | 2 +- .../src/locales/generated/pseudo-en.ts | 2 +- .../twenty-front/src/locales/generated/pt.ts | 2 +- .../twenty-front/src/locales/generated/zh.ts | 2 +- packages/twenty-front/src/locales/it.po | 362 ++++++++++++++--- .../twenty-front/src/locales/pseudo-en.po | 362 ++++++++++++++--- packages/twenty-front/src/locales/pt.po | 362 ++++++++++++++--- packages/twenty-front/src/locales/zh.po | 362 ++++++++++++++--- .../profile/components/DeleteWorkspace.tsx | 18 +- .../ui/input/components/ImageInput.tsx | 9 +- .../__stories__/ImageInput.stories.tsx | 3 +- .../src/pages/not-found/NotFound.tsx | 15 +- .../src/pages/onboarding/InviteTeam.tsx | 53 +-- .../src/pages/settings/Releases.tsx | 12 +- .../src/pages/settings/SettingsBilling.tsx | 11 +- .../src/pages/settings/SettingsProfile.tsx | 6 +- .../settings/SettingsWorkspaceMembers.tsx | 44 +- .../accounts/SettingsAccountsCalendars.tsx | 11 +- .../crm-migration/SettingsCRMMigration.tsx | 8 +- .../settings/data-model/SettingsNewObject.tsx | 8 +- .../data-model/SettingsObjectFieldTable.tsx | 118 +++--- .../data-model/SettingsObjectIndexTable.tsx | 49 ++- .../settings/data-model/SettingsObjects.tsx | 29 +- .../constants/SettingsObjectTableMetadata.ts | 70 ++-- .../developers/SettingsDevelopers.tsx | 8 +- .../integrations/SettingsIntegrations.tsx | 8 +- .../appearance/components/LocalePicker.tsx | 18 +- .../components/SettingsExperience.tsx | 14 +- .../settings/security/SettingsSecurity.tsx | 6 +- .../settings/workspace/SettingsDomain.tsx | 10 +- .../testing/decorators/i18nDecoratorFront.tsx | 17 + 43 files changed, 2895 insertions(+), 651 deletions(-) create mode 100644 packages/twenty-front/src/testing/decorators/i18nDecoratorFront.tsx diff --git a/.cursorrules b/.cursorrules index 13fcbabad..aed6eed69 100644 --- a/.cursorrules +++ b/.cursorrules @@ -65,6 +65,13 @@ - Types in types/ - PascalCase components, camelCase others +## Translation +- Use @lingui/react/macro +- Use within components +- Use t`string` elsewhere (from useLingui hook) +- Don't translate metadata (field names, object names, etc) +- Don't translate mocks + ## Code Style - Early returns - No nested ternaries diff --git a/.eslintrc.cjs b/.eslintrc.cjs index ebf2304bf..e1345956e 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,10 +1,14 @@ module.exports = { root: true, - extends: [ - 'plugin:prettier/recommended', - 'plugin:lingui/recommended', + extends: ['plugin:prettier/recommended', 'plugin:lingui/recommended'], + plugins: [ + '@nx', + 'prefer-arrow', + 'import', + 'unused-imports', + 'unicorn', + 'lingui', ], - plugins: ['@nx', 'prefer-arrow', 'import', 'unused-imports', 'unicorn', 'lingui'], rules: { 'func-style': ['error', 'declaration', { allowArrowFunctions: true }], 'no-console': ['warn', { allow: ['group', 'groupCollapsed', 'groupEnd'] }], @@ -141,4 +145,4 @@ module.exports = { parser: 'jsonc-eslint-parser', }, ], -}; \ No newline at end of file +}; diff --git a/packages/twenty-front/.eslintrc.cjs b/packages/twenty-front/.eslintrc.cjs index 35aa56971..7d4a4d87f 100644 --- a/packages/twenty-front/.eslintrc.cjs +++ b/packages/twenty-front/.eslintrc.cjs @@ -32,6 +32,56 @@ module.exports = { }, rules: { 'project-structure/folder-structure': 'error', + /* + Uncomment this rule when we have a way to work on + 'lingui/no-unlocalized-strings': [ + 'error', + { + ignore: [ + '^(?![A-Z])\\S+$', + '^[A-Z0-9_-]+$' + ], + ignoreNames: [ + { regex: { pattern: 'className', flags: 'i' } }, + { regex: { pattern: '^[A-Z0-9_-]+$' } }, + 'styleName', + 'src', + 'srcSet', + 'type', + 'id', + 'width', + 'height', + 'displayName', + 'Authorization' + ], + ignoreFunctions: [ + 'cva', + 'cn', + 'track', + 'Error', + 'console.*', + '*headers.set', + '*.addEventListener', + '*.removeEventListener', + '*.postMessage', + '*.getElementById', + '*.dispatch', + '*.commit', + '*.includes', + '*.indexOf', + '*.endsWith', + '*.startsWith', + 'require' + ], + useTsTypes: true, + ignoreMethodsOnTypes: [ + 'Map.get', + 'Map.has', + 'Set.has' + ] + } + ] + */ }, }, ], diff --git a/packages/twenty-front/lingui.config.ts b/packages/twenty-front/lingui.config.ts index cd2673ea0..b4eaa51a2 100644 --- a/packages/twenty-front/lingui.config.ts +++ b/packages/twenty-front/lingui.config.ts @@ -13,6 +13,6 @@ export default defineConfig({ include: ['src'], }, ], - catalogsMergePath: '/src/locales/dist/{locale}', + catalogsMergePath: '/src/locales/generated/{locale}', compileNamespace: 'ts', }); diff --git a/packages/twenty-front/src/locales/de.po b/packages/twenty-front/src/locales/de.po index 8f4a3fa45..ec35dde10 100644 --- a/packages/twenty-front/src/locales/de.po +++ b/packages/twenty-front/src/locales/de.po @@ -6,25 +6,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: de\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#. placeholder {0}: settingsObjectsTableMetadataField.fieldLabel -#: src/pages/settings/data-model/SettingsObjects.tsx:180 -msgid "{0}" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:126 +#~ msgid "{0}" +#~ msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:157 +msgid "Abort" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:84 +#: src/pages/settings/data-model/SettingsNewObject.tsx:86 msgid "About" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:193 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:201 msgid "Active" msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:50 -msgid "Active APIs keys created by you or your team." +msgid "Active API keys created by you or your team." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:144 +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +#~ msgid "Active APIs keys created by you or your team." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:149 msgid "Add object" msgstr "" @@ -32,37 +54,76 @@ msgstr "" msgid "API keys" msgstr "" -#. placeholder {5}: switchingInfo.impact -#: src/pages/settings/SettingsBilling.tsx:190 -msgid "Are you sure that you want to change your billing interval? {5}" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" msgstr "" +#: src/pages/settings/SettingsBilling.tsx:190 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:190 +#~ msgid "Are you sure that you want to change your billing interval? {5}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +#~ msgid "Are you sure that you want to change your billing interval? {impact}" +#~ msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:63 msgid "Authentication" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:128 -#: src/pages/settings/SettingsBilling.tsx:134 +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:129 +#: src/pages/settings/SettingsBilling.tsx:135 msgid "Billing" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:174 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +msgid "Calendars" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:175 msgid "Cancel Plan" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:169 +#: src/pages/settings/SettingsBilling.tsx:170 msgid "Cancel your subscription" msgstr "" -#. placeholder {6}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:194 -msgid "Change {6}" +#~ msgid "Change {6}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:194 +msgid "Change {to}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:86 +msgid "Chinese" msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:48 msgid "Configure an SSO connection" msgstr "" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +msgid "Continue" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "" @@ -79,30 +140,52 @@ msgstr "" msgid "Customize your workspace security" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Data model" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:85 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:87 msgid "Define the name and description of your object" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 +msgid "Delete workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 +msgid "Delete your whole workspace" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:35 #: src/pages/settings/developers/SettingsDevelopers.tsx:42 msgid "Developers" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:135 #: src/pages/settings/workspace/SettingsDomain.tsx:150 msgid "Domain" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:156 +#: src/pages/settings/SettingsBilling.tsx:157 msgid "Edit billing interval" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:144 +#: src/pages/settings/SettingsBilling.tsx:145 msgid "Edit payment method, see your invoices and more" msgstr "" @@ -110,31 +193,57 @@ msgstr "" msgid "Edit your subdomain name or set a custom domain." msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:180 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:256 #: src/pages/settings/SettingsProfile.tsx:42 msgid "Email" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:82 +msgid "English" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:51 msgid "Enterprise" msgstr "" -#. placeholder {1}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:118 -msgid "Error while switching subscription {1}." +#~ msgid "Error while switching subscription {1}." +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:121 +msgid "Error while switching subscription {to}." msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:66 msgid "Establish Webhook endpoints for notifications on asynchronous events." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:164 +#: src/pages/settings/data-model/SettingsObjects.tsx:167 msgid "Existing objects" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:56 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +msgid "Experience" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:57 msgid "Failed to create object" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:42 +msgid "Fields" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +msgid "French" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:45 msgid "from monthly to yearly" msgstr "" @@ -145,35 +254,91 @@ msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:132 msgid "General" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:70 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:65 msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:214 +#: src/pages/settings/data-model/SettingsObjects.tsx:217 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:215 msgid "Inactive" msgstr "" +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +msgid "Integrations" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:87 msgid "Invalid form values" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:52 +#: src/pages/settings/data-model/SettingsNewObject.tsx:53 msgid "Invalid object data" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:152 +msgid "Invite link sent to email addresses" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:181 +msgid "Invite your team" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:74 +msgid "Italian" +msgstr "" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 msgid "Language" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:143 +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:167 +msgid "Manage Members" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:168 +msgid "Manage the members of your space here" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:144 msgid "Manage your subscription" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +msgid "Members" +msgstr "" + +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:22 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:28 +msgid "Migrate" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 msgid "Name" @@ -183,11 +348,11 @@ msgstr "" msgid "Name of your workspace" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +#: src/pages/settings/data-model/SettingsNewObject.tsx:77 msgid "New" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +#: src/pages/settings/data-model/SettingsNewObject.tsx:67 msgid "New Object" msgstr "" @@ -195,27 +360,68 @@ msgstr "" msgid "not allowed" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:45 +#: src/pages/settings/data-model/SettingsNewObject.tsx:46 msgid "Object created successfully" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:156 -#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjects.tsx:160 +#: src/pages/settings/data-model/SettingsNewObject.tsx:74 msgid "Objects" msgstr "" +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found | Twenty" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:62 +msgid "Portuguese" +msgstr "" + #: src/pages/settings/SettingsProfile.tsx:19 #: src/pages/settings/SettingsProfile.tsx:25 msgid "Profile" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:168 -msgid "Search an object..." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Pseudo-English" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:173 +msgid "Remove" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:183 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:116 +msgid "Search an index..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +#~ msgid "Search an object..." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +msgid "Search for an object..." msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:33 @@ -227,10 +433,26 @@ msgstr "" msgid "Select your preferred language" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:151 msgid "Set the name of your subdomain" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:78 +msgid "Spanish" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:47 msgid "SSO" msgstr "" @@ -247,34 +469,58 @@ msgstr "" msgid "Subdomain can not be shorter than 3 characters" msgstr "" -#. placeholder {0}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:113 -msgid "Subscription has been switched {0}" +#~ msgid "Subscription has been switched {0}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:117 +msgid "Subscription has been switched {to}" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:63 msgid "Support" msgstr "" -#. placeholder {2}: switchingInfo.from #: src/pages/settings/SettingsBilling.tsx:157 -msgid "Switch {2}" -msgstr "" +#~ msgid "Switch {2}" +#~ msgstr "" -#. placeholder {3}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:161 -msgid "Switch {3}" +#~ msgid "Switch {3}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:162 +msgid "Switch {to}" msgstr "" -#. placeholder {4}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {4}" +#~ msgid "Switch billing {4}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:188 +msgid "Switch billing {to}" msgstr "" #: src/pages/settings/SettingsProfile.tsx:43 msgid "The email associated to your account" msgstr "" +#: src/pages/not-found/NotFound.tsx:50 +msgid "The page you're seeking is either gone or never was. Let's get you back on track" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:323 +msgid "This action cannot be undone. This will permanently delete this user and remove them from all their assignements." +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:48 +msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:51 msgid "to monthly" msgstr "" @@ -283,15 +529,25 @@ msgstr "" msgid "to yearly" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:55 +msgid "Type" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:165 +msgid "Upload" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:51 msgid "Use letter, number and dash only. Start and finish with a letter or a number" msgstr "" #: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 msgid "User" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:148 +#: src/pages/settings/SettingsBilling.tsx:149 msgid "View billing details" msgstr "" @@ -299,16 +555,24 @@ msgstr "" msgid "Webhooks" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 #: src/pages/settings/SettingsWorkspace.tsx:32 -#: src/pages/settings/SettingsBilling.tsx:131 +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/Releases.tsx:114 #: src/pages/settings/workspace/SettingsDomain.tsx:128 #: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 -#: src/pages/settings/data-model/SettingsObjects.tsx:152 -#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjects.tsx:157 +#: src/pages/settings/data-model/SettingsNewObject.tsx:70 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:25 msgid "Workspace" msgstr "" +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:46 msgid "You will be charged immediately for the full year." msgstr "" @@ -321,6 +585,6 @@ msgstr "" msgid "Your name as it will be displayed" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:170 +#: src/pages/settings/SettingsBilling.tsx:171 msgid "Your workspace will be disabled" msgstr "" diff --git a/packages/twenty-front/src/locales/en.po b/packages/twenty-front/src/locales/en.po index 40c6fe3a0..f52e2e867 100644 --- a/packages/twenty-front/src/locales/en.po +++ b/packages/twenty-front/src/locales/en.po @@ -6,25 +6,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#. placeholder {0}: settingsObjectsTableMetadataField.fieldLabel -#: src/pages/settings/data-model/SettingsObjects.tsx:180 -msgid "{0}" -msgstr "{0}" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:126 +#~ msgid "{0}" +#~ msgstr "{0}" -#: src/pages/settings/data-model/SettingsNewObject.tsx:84 +#: src/modules/ui/input/components/ImageInput.tsx:157 +msgid "Abort" +msgstr "Abort" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:86 msgid "About" msgstr "About" -#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +msgid "Account Deletion" +msgstr "Account Deletion" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +msgid "Accounts" +msgstr "Accounts" + +#: src/pages/settings/data-model/SettingsObjects.tsx:193 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:201 msgid "Active" msgstr "Active" #: src/pages/settings/developers/SettingsDevelopers.tsx:50 -msgid "Active APIs keys created by you or your team." -msgstr "Active APIs keys created by you or your team." +msgid "Active API keys created by you or your team." +msgstr "Active API keys created by you or your team." -#: src/pages/settings/data-model/SettingsObjects.tsx:144 +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +#~ msgid "Active APIs keys created by you or your team." +#~ msgstr "Active APIs keys created by you or your team." + +#: src/pages/settings/data-model/SettingsObjects.tsx:149 msgid "Add object" msgstr "Add object" @@ -32,37 +54,76 @@ msgstr "Add object" msgid "API keys" msgstr "API keys" -#. placeholder {5}: switchingInfo.impact +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "Appearance" + #: src/pages/settings/SettingsBilling.tsx:190 -msgid "Are you sure that you want to change your billing interval? {5}" -msgstr "Are you sure that you want to change your billing interval? {5}" +msgid "Are you sure that you want to change your billing interval?" +msgstr "Are you sure that you want to change your billing interval?" + +#: src/pages/settings/SettingsBilling.tsx:190 +#~ msgid "Are you sure that you want to change your billing interval? {5}" +#~ msgstr "Are you sure that you want to change your billing interval? {5}" + +#: src/pages/settings/SettingsBilling.tsx:189 +#~ msgid "Are you sure that you want to change your billing interval? {impact}" +#~ msgstr "Are you sure that you want to change your billing interval? {impact}" #: src/pages/settings/security/SettingsSecurity.tsx:63 msgid "Authentication" msgstr "Authentication" -#: src/pages/settings/SettingsBilling.tsx:128 -#: src/pages/settings/SettingsBilling.tsx:134 +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "Back to content" + +#: src/pages/settings/SettingsBilling.tsx:129 +#: src/pages/settings/SettingsBilling.tsx:135 msgid "Billing" msgstr "Billing" -#: src/pages/settings/SettingsBilling.tsx:174 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +msgid "Calendars" +msgstr "Calendars" + +#: src/pages/settings/SettingsBilling.tsx:175 msgid "Cancel Plan" msgstr "Cancel Plan" -#: src/pages/settings/SettingsBilling.tsx:169 +#: src/pages/settings/SettingsBilling.tsx:170 msgid "Cancel your subscription" msgstr "Cancel your subscription" -#. placeholder {6}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:194 -msgid "Change {6}" -msgstr "Change {6}" +#~ msgid "Change {6}" +#~ msgstr "Change {6}" + +#: src/pages/settings/SettingsBilling.tsx:194 +msgid "Change {to}" +msgstr "Change {to}" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:86 +msgid "Chinese" +msgstr "Chinese" #: src/pages/settings/security/SettingsSecurity.tsx:48 msgid "Configure an SSO connection" msgstr "Configure an SSO connection" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "Configure how dates are displayed across the app" + +#: src/pages/onboarding/InviteTeam.tsx:228 +msgid "Continue" +msgstr "Continue" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "Copy invitation link" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "Create API key" @@ -79,30 +140,52 @@ msgstr "Customize Domain" msgid "Customize your workspace security" msgstr "Customize your workspace security" -#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +msgid "Danger zone" +msgstr "Danger zone" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Data model" msgstr "Data model" -#: src/pages/settings/data-model/SettingsNewObject.tsx:85 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "Date and time" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:87 msgid "Define the name and description of your object" msgstr "Define the name and description of your object" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +msgid "Delete account" +msgstr "Delete account" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 +msgid "Delete workspace" +msgstr "Delete workspace" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 +msgid "Delete your whole workspace" +msgstr "Delete your whole workspace" + #: src/pages/settings/developers/SettingsDevelopers.tsx:35 #: src/pages/settings/developers/SettingsDevelopers.tsx:42 msgid "Developers" msgstr "Developers" #: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:135 #: src/pages/settings/workspace/SettingsDomain.tsx:150 msgid "Domain" msgstr "Domain" -#: src/pages/settings/SettingsBilling.tsx:156 +#: src/pages/settings/SettingsBilling.tsx:157 msgid "Edit billing interval" msgstr "Edit billing interval" -#: src/pages/settings/SettingsBilling.tsx:144 +#: src/pages/settings/SettingsBilling.tsx:145 msgid "Edit payment method, see your invoices and more" msgstr "Edit payment method, see your invoices and more" @@ -110,31 +193,57 @@ msgstr "Edit payment method, see your invoices and more" msgid "Edit your subdomain name or set a custom domain." msgstr "Edit your subdomain name or set a custom domain." +#: src/pages/settings/SettingsWorkspaceMembers.tsx:180 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:256 #: src/pages/settings/SettingsProfile.tsx:42 msgid "Email" msgstr "Email" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:82 +msgid "English" +msgstr "English" + #: src/pages/settings/security/SettingsSecurity.tsx:51 msgid "Enterprise" msgstr "Enterprise" -#. placeholder {1}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:118 -msgid "Error while switching subscription {1}." -msgstr "Error while switching subscription {1}." +#~ msgid "Error while switching subscription {1}." +#~ msgstr "Error while switching subscription {1}." + +#: src/pages/settings/SettingsBilling.tsx:121 +msgid "Error while switching subscription {to}." +msgstr "Error while switching subscription {to}." #: src/pages/settings/developers/SettingsDevelopers.tsx:66 msgid "Establish Webhook endpoints for notifications on asynchronous events." msgstr "Establish Webhook endpoints for notifications on asynchronous events." -#: src/pages/settings/data-model/SettingsObjects.tsx:164 +#: src/pages/settings/data-model/SettingsObjects.tsx:167 msgid "Existing objects" msgstr "Existing objects" -#: src/pages/settings/data-model/SettingsNewObject.tsx:56 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +msgid "Experience" +msgstr "Experience" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "Expires in" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:57 msgid "Failed to create object" msgstr "Failed to create object" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:42 +msgid "Fields" +msgstr "Fields" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +msgid "French" +msgstr "French" + #: src/pages/settings/SettingsBilling.tsx:45 msgid "from monthly to yearly" msgstr "from monthly to yearly" @@ -145,35 +254,91 @@ msgstr "from yearly to monthly" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:132 msgid "General" msgstr "General" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:70 +msgid "German" +msgstr "German" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "Get the most out of your workspace by inviting your team." + #: src/pages/settings/SettingsWorkspace.tsx:65 msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time." msgstr "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time." -#: src/pages/settings/data-model/SettingsObjects.tsx:214 +#: src/pages/settings/data-model/SettingsObjects.tsx:217 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:215 msgid "Inactive" msgstr "Inactive" +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +msgid "Integrations" +msgstr "Integrations" + #: src/pages/settings/workspace/SettingsDomain.tsx:87 msgid "Invalid form values" msgstr "Invalid form values" -#: src/pages/settings/data-model/SettingsNewObject.tsx:52 +#: src/pages/settings/data-model/SettingsNewObject.tsx:53 msgid "Invalid object data" msgstr "Invalid object data" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "Invite by email" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "Invite by link" + +#: src/pages/onboarding/InviteTeam.tsx:152 +msgid "Invite link sent to email addresses" +msgstr "Invite link sent to email addresses" + +#: src/pages/onboarding/InviteTeam.tsx:181 +msgid "Invite your team" +msgstr "Invite your team" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:74 +msgid "Italian" +msgstr "Italian" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 msgid "Language" msgstr "Language" -#: src/pages/settings/SettingsBilling.tsx:143 +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "Link copied to clipboard" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:167 +msgid "Manage Members" +msgstr "Manage Members" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:168 +msgid "Manage the members of your space here" +msgstr "Manage the members of your space here" + +#: src/pages/settings/SettingsBilling.tsx:144 msgid "Manage your subscription" msgstr "Manage your subscription" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +msgid "Members" +msgstr "Members" + +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:22 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:28 +msgid "Migrate" +msgstr "Migrate" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 msgid "Name" @@ -183,11 +348,11 @@ msgstr "Name" msgid "Name of your workspace" msgstr "Name of your workspace" -#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +#: src/pages/settings/data-model/SettingsNewObject.tsx:77 msgid "New" msgstr "New" -#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +#: src/pages/settings/data-model/SettingsNewObject.tsx:67 msgid "New Object" msgstr "New Object" @@ -195,28 +360,69 @@ msgstr "New Object" msgid "not allowed" msgstr "not allowed" -#: src/pages/settings/data-model/SettingsNewObject.tsx:45 +#: src/pages/settings/data-model/SettingsNewObject.tsx:46 msgid "Object created successfully" msgstr "Object created successfully" -#: src/pages/settings/data-model/SettingsObjects.tsx:156 -#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjects.tsx:160 +#: src/pages/settings/data-model/SettingsNewObject.tsx:74 msgid "Objects" msgstr "Objects" +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "Off the beaten path" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "or" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found | Twenty" +msgstr "Page Not Found | Twenty" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" msgstr "Picture" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:62 +msgid "Portuguese" +msgstr "Portuguese" + #: src/pages/settings/SettingsProfile.tsx:19 #: src/pages/settings/SettingsProfile.tsx:25 msgid "Profile" msgstr "Profile" -#: src/pages/settings/data-model/SettingsObjects.tsx:168 -msgid "Search an object..." -msgstr "Search an object..." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Pseudo-English" +msgstr "Pseudo-English" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +msgid "Releases" +msgstr "Releases" + +#: src/modules/ui/input/components/ImageInput.tsx:173 +msgid "Remove" +msgstr "Remove" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:183 +msgid "Search a field..." +msgstr "Search a field..." + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:116 +msgid "Search an index..." +msgstr "Search an index..." + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +#~ msgid "Search an object..." +#~ msgstr "Search an object..." + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +msgid "Search for an object..." +msgstr "Search for an object..." #: src/pages/settings/security/SettingsSecurity.tsx:33 #: src/pages/settings/security/SettingsSecurity.tsx:40 @@ -227,10 +433,26 @@ msgstr "Security" msgid "Select your preferred language" msgstr "Select your preferred language" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "Send an invite email to your team" + #: src/pages/settings/workspace/SettingsDomain.tsx:151 msgid "Set the name of your subdomain" msgstr "Set the name of your subdomain" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "Share this link to invite users to join your workspace" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "Skip" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:78 +msgid "Spanish" +msgstr "Spanish" + #: src/pages/settings/security/SettingsSecurity.tsx:47 msgid "SSO" msgstr "SSO" @@ -247,34 +469,58 @@ msgstr "Subdomain can not be longer than 30 characters" msgid "Subdomain can not be shorter than 3 characters" msgstr "Subdomain can not be shorter than 3 characters" -#. placeholder {0}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:113 -msgid "Subscription has been switched {0}" -msgstr "Subscription has been switched {0}" +#~ msgid "Subscription has been switched {0}" +#~ msgstr "Subscription has been switched {0}" + +#: src/pages/settings/SettingsBilling.tsx:117 +msgid "Subscription has been switched {to}" +msgstr "Subscription has been switched {to}" #: src/pages/settings/SettingsWorkspace.tsx:63 msgid "Support" msgstr "Support" -#. placeholder {2}: switchingInfo.from #: src/pages/settings/SettingsBilling.tsx:157 -msgid "Switch {2}" -msgstr "Switch {2}" +#~ msgid "Switch {2}" +#~ msgstr "Switch {2}" -#. placeholder {3}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:161 -msgid "Switch {3}" -msgstr "Switch {3}" +#~ msgid "Switch {3}" +#~ msgstr "Switch {3}" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Switch {from}" +msgstr "Switch {from}" + +#: src/pages/settings/SettingsBilling.tsx:162 +msgid "Switch {to}" +msgstr "Switch {to}" -#. placeholder {4}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {4}" -msgstr "Switch billing {4}" +#~ msgid "Switch billing {4}" +#~ msgstr "Switch billing {4}" + +#: src/pages/settings/SettingsBilling.tsx:188 +msgid "Switch billing {to}" +msgstr "Switch billing {to}" #: src/pages/settings/SettingsProfile.tsx:43 msgid "The email associated to your account" msgstr "The email associated to your account" +#: src/pages/not-found/NotFound.tsx:50 +msgid "The page you're seeking is either gone or never was. Let's get you back on track" +msgstr "The page you're seeking is either gone or never was. Let's get you back on track" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:323 +msgid "This action cannot be undone. This will permanently delete this user and remove them from all their assignements." +msgstr "This action cannot be undone. This will permanently delete this user and remove them from all their assignements." + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:48 +msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." +msgstr "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." + #: src/pages/settings/SettingsBilling.tsx:51 msgid "to monthly" msgstr "to monthly" @@ -283,15 +529,25 @@ msgstr "to monthly" msgid "to yearly" msgstr "to yearly" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:55 +msgid "Type" +msgstr "Type" + +#: src/modules/ui/input/components/ImageInput.tsx:165 +msgid "Upload" +msgstr "Upload" + #: src/pages/settings/workspace/SettingsDomain.tsx:51 msgid "Use letter, number and dash only. Start and finish with a letter or a number" msgstr "Use letter, number and dash only. Start and finish with a letter or a number" #: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 msgid "User" msgstr "User" -#: src/pages/settings/SettingsBilling.tsx:148 +#: src/pages/settings/SettingsBilling.tsx:149 msgid "View billing details" msgstr "View billing details" @@ -299,16 +555,24 @@ msgstr "View billing details" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 #: src/pages/settings/SettingsWorkspace.tsx:32 -#: src/pages/settings/SettingsBilling.tsx:131 +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/Releases.tsx:114 #: src/pages/settings/workspace/SettingsDomain.tsx:128 #: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 -#: src/pages/settings/data-model/SettingsObjects.tsx:152 -#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjects.tsx:157 +#: src/pages/settings/data-model/SettingsNewObject.tsx:70 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:25 msgid "Workspace" msgstr "Workspace" +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "Workspace Deletion" + #: src/pages/settings/SettingsBilling.tsx:46 msgid "You will be charged immediately for the full year." msgstr "You will be charged immediately for the full year." @@ -321,6 +585,6 @@ msgstr "Your credit balance will be used to pay the monthly bills." msgid "Your name as it will be displayed" msgstr "Your name as it will be displayed" -#: src/pages/settings/SettingsBilling.tsx:170 +#: src/pages/settings/SettingsBilling.tsx:171 msgid "Your workspace will be disabled" msgstr "Your workspace will be disabled" diff --git a/packages/twenty-front/src/locales/es.po b/packages/twenty-front/src/locales/es.po index c42d6c0ca..10c6de0c0 100644 --- a/packages/twenty-front/src/locales/es.po +++ b/packages/twenty-front/src/locales/es.po @@ -6,25 +6,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: es\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#. placeholder {0}: settingsObjectsTableMetadataField.fieldLabel -#: src/pages/settings/data-model/SettingsObjects.tsx:180 -msgid "{0}" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:126 +#~ msgid "{0}" +#~ msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:157 +msgid "Abort" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:84 +#: src/pages/settings/data-model/SettingsNewObject.tsx:86 msgid "About" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:193 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:201 msgid "Active" msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:50 -msgid "Active APIs keys created by you or your team." +msgid "Active API keys created by you or your team." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:144 +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +#~ msgid "Active APIs keys created by you or your team." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:149 msgid "Add object" msgstr "" @@ -32,37 +54,76 @@ msgstr "" msgid "API keys" msgstr "" -#. placeholder {5}: switchingInfo.impact -#: src/pages/settings/SettingsBilling.tsx:190 -msgid "Are you sure that you want to change your billing interval? {5}" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" msgstr "" +#: src/pages/settings/SettingsBilling.tsx:190 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:190 +#~ msgid "Are you sure that you want to change your billing interval? {5}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +#~ msgid "Are you sure that you want to change your billing interval? {impact}" +#~ msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:63 msgid "Authentication" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:128 -#: src/pages/settings/SettingsBilling.tsx:134 +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:129 +#: src/pages/settings/SettingsBilling.tsx:135 msgid "Billing" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:174 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +msgid "Calendars" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:175 msgid "Cancel Plan" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:169 +#: src/pages/settings/SettingsBilling.tsx:170 msgid "Cancel your subscription" msgstr "" -#. placeholder {6}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:194 -msgid "Change {6}" +#~ msgid "Change {6}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:194 +msgid "Change {to}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:86 +msgid "Chinese" msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:48 msgid "Configure an SSO connection" msgstr "" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +msgid "Continue" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "" @@ -79,30 +140,52 @@ msgstr "" msgid "Customize your workspace security" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Data model" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:85 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:87 msgid "Define the name and description of your object" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 +msgid "Delete workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 +msgid "Delete your whole workspace" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:35 #: src/pages/settings/developers/SettingsDevelopers.tsx:42 msgid "Developers" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:135 #: src/pages/settings/workspace/SettingsDomain.tsx:150 msgid "Domain" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:156 +#: src/pages/settings/SettingsBilling.tsx:157 msgid "Edit billing interval" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:144 +#: src/pages/settings/SettingsBilling.tsx:145 msgid "Edit payment method, see your invoices and more" msgstr "" @@ -110,31 +193,57 @@ msgstr "" msgid "Edit your subdomain name or set a custom domain." msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:180 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:256 #: src/pages/settings/SettingsProfile.tsx:42 msgid "Email" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:82 +msgid "English" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:51 msgid "Enterprise" msgstr "" -#. placeholder {1}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:118 -msgid "Error while switching subscription {1}." +#~ msgid "Error while switching subscription {1}." +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:121 +msgid "Error while switching subscription {to}." msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:66 msgid "Establish Webhook endpoints for notifications on asynchronous events." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:164 +#: src/pages/settings/data-model/SettingsObjects.tsx:167 msgid "Existing objects" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:56 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +msgid "Experience" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:57 msgid "Failed to create object" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:42 +msgid "Fields" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +msgid "French" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:45 msgid "from monthly to yearly" msgstr "" @@ -145,35 +254,91 @@ msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:132 msgid "General" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:70 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:65 msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:214 +#: src/pages/settings/data-model/SettingsObjects.tsx:217 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:215 msgid "Inactive" msgstr "" +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +msgid "Integrations" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:87 msgid "Invalid form values" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:52 +#: src/pages/settings/data-model/SettingsNewObject.tsx:53 msgid "Invalid object data" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:152 +msgid "Invite link sent to email addresses" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:181 +msgid "Invite your team" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:74 +msgid "Italian" +msgstr "" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 msgid "Language" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:143 +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:167 +msgid "Manage Members" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:168 +msgid "Manage the members of your space here" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:144 msgid "Manage your subscription" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +msgid "Members" +msgstr "" + +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:22 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:28 +msgid "Migrate" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 msgid "Name" @@ -183,11 +348,11 @@ msgstr "" msgid "Name of your workspace" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +#: src/pages/settings/data-model/SettingsNewObject.tsx:77 msgid "New" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +#: src/pages/settings/data-model/SettingsNewObject.tsx:67 msgid "New Object" msgstr "" @@ -195,27 +360,68 @@ msgstr "" msgid "not allowed" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:45 +#: src/pages/settings/data-model/SettingsNewObject.tsx:46 msgid "Object created successfully" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:156 -#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjects.tsx:160 +#: src/pages/settings/data-model/SettingsNewObject.tsx:74 msgid "Objects" msgstr "" +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found | Twenty" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:62 +msgid "Portuguese" +msgstr "" + #: src/pages/settings/SettingsProfile.tsx:19 #: src/pages/settings/SettingsProfile.tsx:25 msgid "Profile" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:168 -msgid "Search an object..." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Pseudo-English" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:173 +msgid "Remove" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:183 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:116 +msgid "Search an index..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +#~ msgid "Search an object..." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +msgid "Search for an object..." msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:33 @@ -227,10 +433,26 @@ msgstr "" msgid "Select your preferred language" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:151 msgid "Set the name of your subdomain" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:78 +msgid "Spanish" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:47 msgid "SSO" msgstr "" @@ -247,34 +469,58 @@ msgstr "" msgid "Subdomain can not be shorter than 3 characters" msgstr "" -#. placeholder {0}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:113 -msgid "Subscription has been switched {0}" +#~ msgid "Subscription has been switched {0}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:117 +msgid "Subscription has been switched {to}" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:63 msgid "Support" msgstr "" -#. placeholder {2}: switchingInfo.from #: src/pages/settings/SettingsBilling.tsx:157 -msgid "Switch {2}" -msgstr "" +#~ msgid "Switch {2}" +#~ msgstr "" -#. placeholder {3}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:161 -msgid "Switch {3}" +#~ msgid "Switch {3}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:162 +msgid "Switch {to}" msgstr "" -#. placeholder {4}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {4}" +#~ msgid "Switch billing {4}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:188 +msgid "Switch billing {to}" msgstr "" #: src/pages/settings/SettingsProfile.tsx:43 msgid "The email associated to your account" msgstr "" +#: src/pages/not-found/NotFound.tsx:50 +msgid "The page you're seeking is either gone or never was. Let's get you back on track" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:323 +msgid "This action cannot be undone. This will permanently delete this user and remove them from all their assignements." +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:48 +msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:51 msgid "to monthly" msgstr "" @@ -283,15 +529,25 @@ msgstr "" msgid "to yearly" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:55 +msgid "Type" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:165 +msgid "Upload" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:51 msgid "Use letter, number and dash only. Start and finish with a letter or a number" msgstr "" #: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 msgid "User" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:148 +#: src/pages/settings/SettingsBilling.tsx:149 msgid "View billing details" msgstr "" @@ -299,16 +555,24 @@ msgstr "" msgid "Webhooks" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 #: src/pages/settings/SettingsWorkspace.tsx:32 -#: src/pages/settings/SettingsBilling.tsx:131 +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/Releases.tsx:114 #: src/pages/settings/workspace/SettingsDomain.tsx:128 #: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 -#: src/pages/settings/data-model/SettingsObjects.tsx:152 -#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjects.tsx:157 +#: src/pages/settings/data-model/SettingsNewObject.tsx:70 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:25 msgid "Workspace" msgstr "" +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:46 msgid "You will be charged immediately for the full year." msgstr "" @@ -321,6 +585,6 @@ msgstr "" msgid "Your name as it will be displayed" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:170 +#: src/pages/settings/SettingsBilling.tsx:171 msgid "Your workspace will be disabled" msgstr "" diff --git a/packages/twenty-front/src/locales/fr.po b/packages/twenty-front/src/locales/fr.po index ab5c81770..2f7a08708 100644 --- a/packages/twenty-front/src/locales/fr.po +++ b/packages/twenty-front/src/locales/fr.po @@ -6,25 +6,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: fr\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#. placeholder {0}: settingsObjectsTableMetadataField.fieldLabel -#: src/pages/settings/data-model/SettingsObjects.tsx:180 -msgid "{0}" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:126 +#~ msgid "{0}" +#~ msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:157 +msgid "Abort" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:84 +#: src/pages/settings/data-model/SettingsNewObject.tsx:86 msgid "About" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:193 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:201 msgid "Active" msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:50 -msgid "Active APIs keys created by you or your team." +msgid "Active API keys created by you or your team." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:144 +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +#~ msgid "Active APIs keys created by you or your team." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:149 msgid "Add object" msgstr "" @@ -32,37 +54,76 @@ msgstr "" msgid "API keys" msgstr "" -#. placeholder {5}: switchingInfo.impact -#: src/pages/settings/SettingsBilling.tsx:190 -msgid "Are you sure that you want to change your billing interval? {5}" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" msgstr "" +#: src/pages/settings/SettingsBilling.tsx:190 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:190 +#~ msgid "Are you sure that you want to change your billing interval? {5}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +#~ msgid "Are you sure that you want to change your billing interval? {impact}" +#~ msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:63 msgid "Authentication" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:128 -#: src/pages/settings/SettingsBilling.tsx:134 +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:129 +#: src/pages/settings/SettingsBilling.tsx:135 msgid "Billing" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:174 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +msgid "Calendars" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:175 msgid "Cancel Plan" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:169 +#: src/pages/settings/SettingsBilling.tsx:170 msgid "Cancel your subscription" msgstr "" -#. placeholder {6}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:194 -msgid "Change {6}" +#~ msgid "Change {6}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:194 +msgid "Change {to}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:86 +msgid "Chinese" msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:48 msgid "Configure an SSO connection" msgstr "" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +msgid "Continue" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "" @@ -79,30 +140,52 @@ msgstr "" msgid "Customize your workspace security" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Data model" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:85 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:87 msgid "Define the name and description of your object" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 +msgid "Delete workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 +msgid "Delete your whole workspace" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:35 #: src/pages/settings/developers/SettingsDevelopers.tsx:42 msgid "Developers" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:135 #: src/pages/settings/workspace/SettingsDomain.tsx:150 msgid "Domain" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:156 +#: src/pages/settings/SettingsBilling.tsx:157 msgid "Edit billing interval" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:144 +#: src/pages/settings/SettingsBilling.tsx:145 msgid "Edit payment method, see your invoices and more" msgstr "" @@ -110,31 +193,57 @@ msgstr "" msgid "Edit your subdomain name or set a custom domain." msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:180 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:256 #: src/pages/settings/SettingsProfile.tsx:42 msgid "Email" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:82 +msgid "English" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:51 msgid "Enterprise" msgstr "" -#. placeholder {1}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:118 -msgid "Error while switching subscription {1}." +#~ msgid "Error while switching subscription {1}." +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:121 +msgid "Error while switching subscription {to}." msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:66 msgid "Establish Webhook endpoints for notifications on asynchronous events." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:164 +#: src/pages/settings/data-model/SettingsObjects.tsx:167 msgid "Existing objects" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:56 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +msgid "Experience" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:57 msgid "Failed to create object" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:42 +msgid "Fields" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +msgid "French" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:45 msgid "from monthly to yearly" msgstr "" @@ -145,35 +254,91 @@ msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:132 msgid "General" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:70 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:65 msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:214 +#: src/pages/settings/data-model/SettingsObjects.tsx:217 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:215 msgid "Inactive" msgstr "" +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +msgid "Integrations" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:87 msgid "Invalid form values" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:52 +#: src/pages/settings/data-model/SettingsNewObject.tsx:53 msgid "Invalid object data" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:152 +msgid "Invite link sent to email addresses" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:181 +msgid "Invite your team" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:74 +msgid "Italian" +msgstr "" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 msgid "Language" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:143 +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:167 +msgid "Manage Members" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:168 +msgid "Manage the members of your space here" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:144 msgid "Manage your subscription" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +msgid "Members" +msgstr "" + +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:22 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:28 +msgid "Migrate" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 msgid "Name" @@ -183,11 +348,11 @@ msgstr "" msgid "Name of your workspace" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +#: src/pages/settings/data-model/SettingsNewObject.tsx:77 msgid "New" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +#: src/pages/settings/data-model/SettingsNewObject.tsx:67 msgid "New Object" msgstr "" @@ -195,27 +360,68 @@ msgstr "" msgid "not allowed" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:45 +#: src/pages/settings/data-model/SettingsNewObject.tsx:46 msgid "Object created successfully" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:156 -#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjects.tsx:160 +#: src/pages/settings/data-model/SettingsNewObject.tsx:74 msgid "Objects" msgstr "" +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found | Twenty" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:62 +msgid "Portuguese" +msgstr "" + #: src/pages/settings/SettingsProfile.tsx:19 #: src/pages/settings/SettingsProfile.tsx:25 msgid "Profile" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:168 -msgid "Search an object..." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Pseudo-English" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:173 +msgid "Remove" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:183 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:116 +msgid "Search an index..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +#~ msgid "Search an object..." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +msgid "Search for an object..." msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:33 @@ -227,10 +433,26 @@ msgstr "" msgid "Select your preferred language" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:151 msgid "Set the name of your subdomain" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:78 +msgid "Spanish" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:47 msgid "SSO" msgstr "" @@ -247,34 +469,58 @@ msgstr "" msgid "Subdomain can not be shorter than 3 characters" msgstr "" -#. placeholder {0}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:113 -msgid "Subscription has been switched {0}" +#~ msgid "Subscription has been switched {0}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:117 +msgid "Subscription has been switched {to}" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:63 msgid "Support" msgstr "" -#. placeholder {2}: switchingInfo.from #: src/pages/settings/SettingsBilling.tsx:157 -msgid "Switch {2}" -msgstr "" +#~ msgid "Switch {2}" +#~ msgstr "" -#. placeholder {3}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:161 -msgid "Switch {3}" +#~ msgid "Switch {3}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:162 +msgid "Switch {to}" msgstr "" -#. placeholder {4}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {4}" +#~ msgid "Switch billing {4}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:188 +msgid "Switch billing {to}" msgstr "" #: src/pages/settings/SettingsProfile.tsx:43 msgid "The email associated to your account" msgstr "" +#: src/pages/not-found/NotFound.tsx:50 +msgid "The page you're seeking is either gone or never was. Let's get you back on track" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:323 +msgid "This action cannot be undone. This will permanently delete this user and remove them from all their assignements." +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:48 +msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:51 msgid "to monthly" msgstr "" @@ -283,15 +529,25 @@ msgstr "" msgid "to yearly" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:55 +msgid "Type" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:165 +msgid "Upload" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:51 msgid "Use letter, number and dash only. Start and finish with a letter or a number" msgstr "" #: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 msgid "User" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:148 +#: src/pages/settings/SettingsBilling.tsx:149 msgid "View billing details" msgstr "" @@ -299,16 +555,24 @@ msgstr "" msgid "Webhooks" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 #: src/pages/settings/SettingsWorkspace.tsx:32 -#: src/pages/settings/SettingsBilling.tsx:131 +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/Releases.tsx:114 #: src/pages/settings/workspace/SettingsDomain.tsx:128 #: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 -#: src/pages/settings/data-model/SettingsObjects.tsx:152 -#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjects.tsx:157 +#: src/pages/settings/data-model/SettingsNewObject.tsx:70 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:25 msgid "Workspace" msgstr "" +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:46 msgid "You will be charged immediately for the full year." msgstr "" @@ -321,6 +585,6 @@ msgstr "" msgid "Your name as it will be displayed" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:170 +#: src/pages/settings/SettingsBilling.tsx:171 msgid "Your workspace will be disabled" msgstr "" diff --git a/packages/twenty-front/src/locales/generated/de.ts b/packages/twenty-front/src/locales/generated/de.ts index 9a974ce1b..12b2051ce 100644 --- a/packages/twenty-front/src/locales/generated/de.ts +++ b/packages/twenty-front/src/locales/generated/de.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"uyJsf6\":[\"About\"],\"F6pfE9\":[\"Active\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"P8fBlG\":[\"Authentication\"],\"R+w/Va\":[\"Billing\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"+zUMwJ\":[\"Configure an SSO connection\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"5cNMFz\":[\"Data model\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"Q0iobh\":[\"Failed to create object\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"vXIe7J\":[\"Language\"],\"36kYu0\":[\"Manage your subscription\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"N0+GsR\":[\"Picture\"],\"vERlcd\":[\"Profile\"],\"BoNHR0\":[\"Search an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"ssjjFt\":[\"Abort\"],\"uyJsf6\":[\"About\"],\"nD0Y+a\":[\"Account Deletion\"],\"bPwFdf\":[\"Accounts\"],\"F6pfE9\":[\"Active\"],\"Mue4oc\":[\"Active API keys created by you or your team.\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"aAIQg2\":[\"Appearance\"],\"3iX0kh\":[\"Are you sure that you want to change your billing interval?\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"jQyP8N\":[\"Are you sure that you want to change your billing interval? \",[\"impact\"]],\"P8fBlG\":[\"Authentication\"],\"Dht9W3\":[\"Back to content\"],\"R+w/Va\":[\"Billing\"],\"EUpfsd\":[\"Calendars\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"OfzMnb\":[\"Change \",[\"to\"]],\"h1IXFK\":[\"Chinese\"],\"+zUMwJ\":[\"Configure an SSO connection\"],\"aGwm+D\":[\"Configure how dates are displayed across the app\"],\"xGVfLh\":[\"Continue\"],\"7eVkEH\":[\"Copy invitation link\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"Zz6Cxn\":[\"Danger zone\"],\"5cNMFz\":[\"Data model\"],\"Ud9zHv\":[\"Date and time\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"ZDGm40\":[\"Delete account\"],\"kYu0eF\":[\"Delete workspace\"],\"mk2Ygs\":[\"Delete your whole workspace\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"lYGfRP\":[\"English\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"VSQxWH\":[\"Error while switching subscription \",[\"to\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"bKBhgb\":[\"Experience\"],\"i9qiyR\":[\"Expires in\"],\"Q0iobh\":[\"Failed to create object\"],\"vF68cg\":[\"Fields\"],\"nLC6tu\":[\"French\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"German\"],\"NXEW3h\":[\"Get the most out of your workspace by inviting your team.\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"nbfdhU\":[\"Integrations\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"0M8+El\":[\"Invite by email\"],\"PWIq/W\":[\"Invite by link\"],\"5IfmKA\":[\"Invite link sent to email addresses\"],\"d+Y+rP\":[\"Invite your team\"],\"Lj7sBL\":[\"Italian\"],\"vXIe7J\":[\"Language\"],\"pQjjYo\":[\"Link copied to clipboard\"],\"T6YjCk\":[\"Manage Members\"],\"4cjU2u\":[\"Manage the members of your space here\"],\"36kYu0\":[\"Manage your subscription\"],\"wlQNTg\":[\"Members\"],\"y5rS9U\":[\"Migrate\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"KNz3EF\":[\"Off the beaten path\"],\"BzEFor\":[\"or\"],\"NRvxzv\":[\"Page Not Found | Twenty\"],\"N0+GsR\":[\"Picture\"],\"MOERNx\":[\"Portuguese\"],\"vERlcd\":[\"Profile\"],\"YJgRqq\":[\"Pseudo-English\"],\"5icoS1\":[\"Releases\"],\"t/YqKh\":[\"Remove\"],\"l1/uy2\":[\"Search a field...\"],\"k7kp5/\":[\"Search an index...\"],\"BoNHR0\":[\"Search an object...\"],\"ofuw3g\":[\"Search for an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"mjK8F3\":[\"Send an invite email to your team\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"Vy9kmk\":[\"Share this link to invite users to join your workspace\"],\"6Uau97\":[\"Skip\"],\"65A04M\":[\"Spanish\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"B5jRKH\":[\"Subscription has been switched \",[\"to\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"9yk9d1\":[\"Switch \",[\"from\"]],\"qi74XZ\":[\"Switch \",[\"to\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"L6Fg36\":[\"Switch billing \",[\"to\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"L97sPr\":[\"The page you're seeking is either gone or never was. Let's get you back on track\"],\"7YiCMg\":[\"This action cannot be undone. This will permanently delete this user and remove them from all their assignements.\"],\"gWGuHC\":[\"This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm.\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"+zy2Nq\":[\"Type\"],\"ONWvwQ\":[\"Upload\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Workspace Deletion\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/en.ts b/packages/twenty-front/src/locales/generated/en.ts index 9a974ce1b..12b2051ce 100644 --- a/packages/twenty-front/src/locales/generated/en.ts +++ b/packages/twenty-front/src/locales/generated/en.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"uyJsf6\":[\"About\"],\"F6pfE9\":[\"Active\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"P8fBlG\":[\"Authentication\"],\"R+w/Va\":[\"Billing\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"+zUMwJ\":[\"Configure an SSO connection\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"5cNMFz\":[\"Data model\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"Q0iobh\":[\"Failed to create object\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"vXIe7J\":[\"Language\"],\"36kYu0\":[\"Manage your subscription\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"N0+GsR\":[\"Picture\"],\"vERlcd\":[\"Profile\"],\"BoNHR0\":[\"Search an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"ssjjFt\":[\"Abort\"],\"uyJsf6\":[\"About\"],\"nD0Y+a\":[\"Account Deletion\"],\"bPwFdf\":[\"Accounts\"],\"F6pfE9\":[\"Active\"],\"Mue4oc\":[\"Active API keys created by you or your team.\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"aAIQg2\":[\"Appearance\"],\"3iX0kh\":[\"Are you sure that you want to change your billing interval?\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"jQyP8N\":[\"Are you sure that you want to change your billing interval? \",[\"impact\"]],\"P8fBlG\":[\"Authentication\"],\"Dht9W3\":[\"Back to content\"],\"R+w/Va\":[\"Billing\"],\"EUpfsd\":[\"Calendars\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"OfzMnb\":[\"Change \",[\"to\"]],\"h1IXFK\":[\"Chinese\"],\"+zUMwJ\":[\"Configure an SSO connection\"],\"aGwm+D\":[\"Configure how dates are displayed across the app\"],\"xGVfLh\":[\"Continue\"],\"7eVkEH\":[\"Copy invitation link\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"Zz6Cxn\":[\"Danger zone\"],\"5cNMFz\":[\"Data model\"],\"Ud9zHv\":[\"Date and time\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"ZDGm40\":[\"Delete account\"],\"kYu0eF\":[\"Delete workspace\"],\"mk2Ygs\":[\"Delete your whole workspace\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"lYGfRP\":[\"English\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"VSQxWH\":[\"Error while switching subscription \",[\"to\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"bKBhgb\":[\"Experience\"],\"i9qiyR\":[\"Expires in\"],\"Q0iobh\":[\"Failed to create object\"],\"vF68cg\":[\"Fields\"],\"nLC6tu\":[\"French\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"German\"],\"NXEW3h\":[\"Get the most out of your workspace by inviting your team.\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"nbfdhU\":[\"Integrations\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"0M8+El\":[\"Invite by email\"],\"PWIq/W\":[\"Invite by link\"],\"5IfmKA\":[\"Invite link sent to email addresses\"],\"d+Y+rP\":[\"Invite your team\"],\"Lj7sBL\":[\"Italian\"],\"vXIe7J\":[\"Language\"],\"pQjjYo\":[\"Link copied to clipboard\"],\"T6YjCk\":[\"Manage Members\"],\"4cjU2u\":[\"Manage the members of your space here\"],\"36kYu0\":[\"Manage your subscription\"],\"wlQNTg\":[\"Members\"],\"y5rS9U\":[\"Migrate\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"KNz3EF\":[\"Off the beaten path\"],\"BzEFor\":[\"or\"],\"NRvxzv\":[\"Page Not Found | Twenty\"],\"N0+GsR\":[\"Picture\"],\"MOERNx\":[\"Portuguese\"],\"vERlcd\":[\"Profile\"],\"YJgRqq\":[\"Pseudo-English\"],\"5icoS1\":[\"Releases\"],\"t/YqKh\":[\"Remove\"],\"l1/uy2\":[\"Search a field...\"],\"k7kp5/\":[\"Search an index...\"],\"BoNHR0\":[\"Search an object...\"],\"ofuw3g\":[\"Search for an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"mjK8F3\":[\"Send an invite email to your team\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"Vy9kmk\":[\"Share this link to invite users to join your workspace\"],\"6Uau97\":[\"Skip\"],\"65A04M\":[\"Spanish\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"B5jRKH\":[\"Subscription has been switched \",[\"to\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"9yk9d1\":[\"Switch \",[\"from\"]],\"qi74XZ\":[\"Switch \",[\"to\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"L6Fg36\":[\"Switch billing \",[\"to\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"L97sPr\":[\"The page you're seeking is either gone or never was. Let's get you back on track\"],\"7YiCMg\":[\"This action cannot be undone. This will permanently delete this user and remove them from all their assignements.\"],\"gWGuHC\":[\"This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm.\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"+zy2Nq\":[\"Type\"],\"ONWvwQ\":[\"Upload\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Workspace Deletion\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/es.ts b/packages/twenty-front/src/locales/generated/es.ts index 9a974ce1b..12b2051ce 100644 --- a/packages/twenty-front/src/locales/generated/es.ts +++ b/packages/twenty-front/src/locales/generated/es.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"uyJsf6\":[\"About\"],\"F6pfE9\":[\"Active\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"P8fBlG\":[\"Authentication\"],\"R+w/Va\":[\"Billing\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"+zUMwJ\":[\"Configure an SSO connection\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"5cNMFz\":[\"Data model\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"Q0iobh\":[\"Failed to create object\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"vXIe7J\":[\"Language\"],\"36kYu0\":[\"Manage your subscription\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"N0+GsR\":[\"Picture\"],\"vERlcd\":[\"Profile\"],\"BoNHR0\":[\"Search an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"ssjjFt\":[\"Abort\"],\"uyJsf6\":[\"About\"],\"nD0Y+a\":[\"Account Deletion\"],\"bPwFdf\":[\"Accounts\"],\"F6pfE9\":[\"Active\"],\"Mue4oc\":[\"Active API keys created by you or your team.\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"aAIQg2\":[\"Appearance\"],\"3iX0kh\":[\"Are you sure that you want to change your billing interval?\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"jQyP8N\":[\"Are you sure that you want to change your billing interval? \",[\"impact\"]],\"P8fBlG\":[\"Authentication\"],\"Dht9W3\":[\"Back to content\"],\"R+w/Va\":[\"Billing\"],\"EUpfsd\":[\"Calendars\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"OfzMnb\":[\"Change \",[\"to\"]],\"h1IXFK\":[\"Chinese\"],\"+zUMwJ\":[\"Configure an SSO connection\"],\"aGwm+D\":[\"Configure how dates are displayed across the app\"],\"xGVfLh\":[\"Continue\"],\"7eVkEH\":[\"Copy invitation link\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"Zz6Cxn\":[\"Danger zone\"],\"5cNMFz\":[\"Data model\"],\"Ud9zHv\":[\"Date and time\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"ZDGm40\":[\"Delete account\"],\"kYu0eF\":[\"Delete workspace\"],\"mk2Ygs\":[\"Delete your whole workspace\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"lYGfRP\":[\"English\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"VSQxWH\":[\"Error while switching subscription \",[\"to\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"bKBhgb\":[\"Experience\"],\"i9qiyR\":[\"Expires in\"],\"Q0iobh\":[\"Failed to create object\"],\"vF68cg\":[\"Fields\"],\"nLC6tu\":[\"French\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"German\"],\"NXEW3h\":[\"Get the most out of your workspace by inviting your team.\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"nbfdhU\":[\"Integrations\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"0M8+El\":[\"Invite by email\"],\"PWIq/W\":[\"Invite by link\"],\"5IfmKA\":[\"Invite link sent to email addresses\"],\"d+Y+rP\":[\"Invite your team\"],\"Lj7sBL\":[\"Italian\"],\"vXIe7J\":[\"Language\"],\"pQjjYo\":[\"Link copied to clipboard\"],\"T6YjCk\":[\"Manage Members\"],\"4cjU2u\":[\"Manage the members of your space here\"],\"36kYu0\":[\"Manage your subscription\"],\"wlQNTg\":[\"Members\"],\"y5rS9U\":[\"Migrate\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"KNz3EF\":[\"Off the beaten path\"],\"BzEFor\":[\"or\"],\"NRvxzv\":[\"Page Not Found | Twenty\"],\"N0+GsR\":[\"Picture\"],\"MOERNx\":[\"Portuguese\"],\"vERlcd\":[\"Profile\"],\"YJgRqq\":[\"Pseudo-English\"],\"5icoS1\":[\"Releases\"],\"t/YqKh\":[\"Remove\"],\"l1/uy2\":[\"Search a field...\"],\"k7kp5/\":[\"Search an index...\"],\"BoNHR0\":[\"Search an object...\"],\"ofuw3g\":[\"Search for an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"mjK8F3\":[\"Send an invite email to your team\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"Vy9kmk\":[\"Share this link to invite users to join your workspace\"],\"6Uau97\":[\"Skip\"],\"65A04M\":[\"Spanish\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"B5jRKH\":[\"Subscription has been switched \",[\"to\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"9yk9d1\":[\"Switch \",[\"from\"]],\"qi74XZ\":[\"Switch \",[\"to\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"L6Fg36\":[\"Switch billing \",[\"to\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"L97sPr\":[\"The page you're seeking is either gone or never was. Let's get you back on track\"],\"7YiCMg\":[\"This action cannot be undone. This will permanently delete this user and remove them from all their assignements.\"],\"gWGuHC\":[\"This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm.\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"+zy2Nq\":[\"Type\"],\"ONWvwQ\":[\"Upload\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Workspace Deletion\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/fr.ts b/packages/twenty-front/src/locales/generated/fr.ts index 9a974ce1b..12b2051ce 100644 --- a/packages/twenty-front/src/locales/generated/fr.ts +++ b/packages/twenty-front/src/locales/generated/fr.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"uyJsf6\":[\"About\"],\"F6pfE9\":[\"Active\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"P8fBlG\":[\"Authentication\"],\"R+w/Va\":[\"Billing\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"+zUMwJ\":[\"Configure an SSO connection\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"5cNMFz\":[\"Data model\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"Q0iobh\":[\"Failed to create object\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"vXIe7J\":[\"Language\"],\"36kYu0\":[\"Manage your subscription\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"N0+GsR\":[\"Picture\"],\"vERlcd\":[\"Profile\"],\"BoNHR0\":[\"Search an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"ssjjFt\":[\"Abort\"],\"uyJsf6\":[\"About\"],\"nD0Y+a\":[\"Account Deletion\"],\"bPwFdf\":[\"Accounts\"],\"F6pfE9\":[\"Active\"],\"Mue4oc\":[\"Active API keys created by you or your team.\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"aAIQg2\":[\"Appearance\"],\"3iX0kh\":[\"Are you sure that you want to change your billing interval?\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"jQyP8N\":[\"Are you sure that you want to change your billing interval? \",[\"impact\"]],\"P8fBlG\":[\"Authentication\"],\"Dht9W3\":[\"Back to content\"],\"R+w/Va\":[\"Billing\"],\"EUpfsd\":[\"Calendars\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"OfzMnb\":[\"Change \",[\"to\"]],\"h1IXFK\":[\"Chinese\"],\"+zUMwJ\":[\"Configure an SSO connection\"],\"aGwm+D\":[\"Configure how dates are displayed across the app\"],\"xGVfLh\":[\"Continue\"],\"7eVkEH\":[\"Copy invitation link\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"Zz6Cxn\":[\"Danger zone\"],\"5cNMFz\":[\"Data model\"],\"Ud9zHv\":[\"Date and time\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"ZDGm40\":[\"Delete account\"],\"kYu0eF\":[\"Delete workspace\"],\"mk2Ygs\":[\"Delete your whole workspace\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"lYGfRP\":[\"English\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"VSQxWH\":[\"Error while switching subscription \",[\"to\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"bKBhgb\":[\"Experience\"],\"i9qiyR\":[\"Expires in\"],\"Q0iobh\":[\"Failed to create object\"],\"vF68cg\":[\"Fields\"],\"nLC6tu\":[\"French\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"German\"],\"NXEW3h\":[\"Get the most out of your workspace by inviting your team.\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"nbfdhU\":[\"Integrations\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"0M8+El\":[\"Invite by email\"],\"PWIq/W\":[\"Invite by link\"],\"5IfmKA\":[\"Invite link sent to email addresses\"],\"d+Y+rP\":[\"Invite your team\"],\"Lj7sBL\":[\"Italian\"],\"vXIe7J\":[\"Language\"],\"pQjjYo\":[\"Link copied to clipboard\"],\"T6YjCk\":[\"Manage Members\"],\"4cjU2u\":[\"Manage the members of your space here\"],\"36kYu0\":[\"Manage your subscription\"],\"wlQNTg\":[\"Members\"],\"y5rS9U\":[\"Migrate\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"KNz3EF\":[\"Off the beaten path\"],\"BzEFor\":[\"or\"],\"NRvxzv\":[\"Page Not Found | Twenty\"],\"N0+GsR\":[\"Picture\"],\"MOERNx\":[\"Portuguese\"],\"vERlcd\":[\"Profile\"],\"YJgRqq\":[\"Pseudo-English\"],\"5icoS1\":[\"Releases\"],\"t/YqKh\":[\"Remove\"],\"l1/uy2\":[\"Search a field...\"],\"k7kp5/\":[\"Search an index...\"],\"BoNHR0\":[\"Search an object...\"],\"ofuw3g\":[\"Search for an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"mjK8F3\":[\"Send an invite email to your team\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"Vy9kmk\":[\"Share this link to invite users to join your workspace\"],\"6Uau97\":[\"Skip\"],\"65A04M\":[\"Spanish\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"B5jRKH\":[\"Subscription has been switched \",[\"to\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"9yk9d1\":[\"Switch \",[\"from\"]],\"qi74XZ\":[\"Switch \",[\"to\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"L6Fg36\":[\"Switch billing \",[\"to\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"L97sPr\":[\"The page you're seeking is either gone or never was. Let's get you back on track\"],\"7YiCMg\":[\"This action cannot be undone. This will permanently delete this user and remove them from all their assignements.\"],\"gWGuHC\":[\"This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm.\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"+zy2Nq\":[\"Type\"],\"ONWvwQ\":[\"Upload\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Workspace Deletion\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/it.ts b/packages/twenty-front/src/locales/generated/it.ts index 9a974ce1b..12b2051ce 100644 --- a/packages/twenty-front/src/locales/generated/it.ts +++ b/packages/twenty-front/src/locales/generated/it.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"uyJsf6\":[\"About\"],\"F6pfE9\":[\"Active\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"P8fBlG\":[\"Authentication\"],\"R+w/Va\":[\"Billing\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"+zUMwJ\":[\"Configure an SSO connection\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"5cNMFz\":[\"Data model\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"Q0iobh\":[\"Failed to create object\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"vXIe7J\":[\"Language\"],\"36kYu0\":[\"Manage your subscription\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"N0+GsR\":[\"Picture\"],\"vERlcd\":[\"Profile\"],\"BoNHR0\":[\"Search an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"ssjjFt\":[\"Abort\"],\"uyJsf6\":[\"About\"],\"nD0Y+a\":[\"Account Deletion\"],\"bPwFdf\":[\"Accounts\"],\"F6pfE9\":[\"Active\"],\"Mue4oc\":[\"Active API keys created by you or your team.\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"aAIQg2\":[\"Appearance\"],\"3iX0kh\":[\"Are you sure that you want to change your billing interval?\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"jQyP8N\":[\"Are you sure that you want to change your billing interval? \",[\"impact\"]],\"P8fBlG\":[\"Authentication\"],\"Dht9W3\":[\"Back to content\"],\"R+w/Va\":[\"Billing\"],\"EUpfsd\":[\"Calendars\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"OfzMnb\":[\"Change \",[\"to\"]],\"h1IXFK\":[\"Chinese\"],\"+zUMwJ\":[\"Configure an SSO connection\"],\"aGwm+D\":[\"Configure how dates are displayed across the app\"],\"xGVfLh\":[\"Continue\"],\"7eVkEH\":[\"Copy invitation link\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"Zz6Cxn\":[\"Danger zone\"],\"5cNMFz\":[\"Data model\"],\"Ud9zHv\":[\"Date and time\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"ZDGm40\":[\"Delete account\"],\"kYu0eF\":[\"Delete workspace\"],\"mk2Ygs\":[\"Delete your whole workspace\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"lYGfRP\":[\"English\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"VSQxWH\":[\"Error while switching subscription \",[\"to\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"bKBhgb\":[\"Experience\"],\"i9qiyR\":[\"Expires in\"],\"Q0iobh\":[\"Failed to create object\"],\"vF68cg\":[\"Fields\"],\"nLC6tu\":[\"French\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"German\"],\"NXEW3h\":[\"Get the most out of your workspace by inviting your team.\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"nbfdhU\":[\"Integrations\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"0M8+El\":[\"Invite by email\"],\"PWIq/W\":[\"Invite by link\"],\"5IfmKA\":[\"Invite link sent to email addresses\"],\"d+Y+rP\":[\"Invite your team\"],\"Lj7sBL\":[\"Italian\"],\"vXIe7J\":[\"Language\"],\"pQjjYo\":[\"Link copied to clipboard\"],\"T6YjCk\":[\"Manage Members\"],\"4cjU2u\":[\"Manage the members of your space here\"],\"36kYu0\":[\"Manage your subscription\"],\"wlQNTg\":[\"Members\"],\"y5rS9U\":[\"Migrate\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"KNz3EF\":[\"Off the beaten path\"],\"BzEFor\":[\"or\"],\"NRvxzv\":[\"Page Not Found | Twenty\"],\"N0+GsR\":[\"Picture\"],\"MOERNx\":[\"Portuguese\"],\"vERlcd\":[\"Profile\"],\"YJgRqq\":[\"Pseudo-English\"],\"5icoS1\":[\"Releases\"],\"t/YqKh\":[\"Remove\"],\"l1/uy2\":[\"Search a field...\"],\"k7kp5/\":[\"Search an index...\"],\"BoNHR0\":[\"Search an object...\"],\"ofuw3g\":[\"Search for an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"mjK8F3\":[\"Send an invite email to your team\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"Vy9kmk\":[\"Share this link to invite users to join your workspace\"],\"6Uau97\":[\"Skip\"],\"65A04M\":[\"Spanish\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"B5jRKH\":[\"Subscription has been switched \",[\"to\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"9yk9d1\":[\"Switch \",[\"from\"]],\"qi74XZ\":[\"Switch \",[\"to\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"L6Fg36\":[\"Switch billing \",[\"to\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"L97sPr\":[\"The page you're seeking is either gone or never was. Let's get you back on track\"],\"7YiCMg\":[\"This action cannot be undone. This will permanently delete this user and remove them from all their assignements.\"],\"gWGuHC\":[\"This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm.\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"+zy2Nq\":[\"Type\"],\"ONWvwQ\":[\"Upload\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Workspace Deletion\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/pseudo-en.ts b/packages/twenty-front/src/locales/generated/pseudo-en.ts index 131d86cce..6fe5d8b99 100644 --- a/packages/twenty-front/src/locales/generated/pseudo-en.ts +++ b/packages/twenty-front/src/locales/generated/pseudo-en.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"uyJsf6\":[\"Àƀōũţ\"],\"F6pfE9\":[\"Àćţĩvē\"],\"Z+OxK0\":[\"Àćţĩvē ÀƤĨś ķēŷś ćŕēàţēď ƀŷ ŷōũ ōŕ ŷōũŕ ţēàḿ.\"],\"dEO3Zx\":[\"Àďď ōƀĴēćţ\"],\"5h8ooz\":[\"ÀƤĨ ķēŷś\"],\"TmDqlR\":[\"Àŕē ŷōũ śũŕē ţĥàţ ŷōũ ŵàńţ ţō ćĥàńĝē ŷōũŕ ƀĩĺĺĩńĝ ĩńţēŕvàĺ? \",[\"5\"]],\"P8fBlG\":[\"Àũţĥēńţĩćàţĩōń\"],\"R+w/Va\":[\"ßĩĺĺĩńĝ\"],\"rRK/Lf\":[\"Ćàńćēĺ Ƥĺàń\"],\"N6gPiD\":[\"Ćàńćēĺ ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"JcIGyw\":[\"Ćĥàńĝē \",[\"6\"]],\"+zUMwJ\":[\"Ćōńƒĩĝũŕē àń ŚŚŌ ćōńńēćţĩōń\"],\"uXGLuq\":[\"Ćŕēàţē ÀƤĨ ķēŷ\"],\"dkAPxi\":[\"Ćŕēàţē Ŵēƀĥōōķ\"],\"CMhr4u\":[\"Ćũśţōḿĩźē Ďōḿàĩń\"],\"bCJa9l\":[\"Ćũśţōḿĩźē ŷōũŕ ŵōŕķśƥàćē śēćũŕĩţŷ\"],\"5cNMFz\":[\"Ďàţà ḿōďēĺ\"],\"Y2ImVJ\":[\"Ďēƒĩńē ţĥē ńàḿē àńď ďēśćŕĩƥţĩōń ōƒ ŷōũŕ ōƀĴēćţ\"],\"n+SX4g\":[\"Ďēvēĺōƥēŕś\"],\"EoKe5U\":[\"Ďōḿàĩń\"],\"v+uKyy\":[\"Ēďĩţ ƀĩĺĺĩńĝ ĩńţēŕvàĺ\"],\"h2KoTu\":[\"Ēďĩţ ƥàŷḿēńţ ḿēţĥōď, śēē ŷōũŕ ĩńvōĩćēś àńď ḿōŕē\"],\"6o1M/Q\":[\"Ēďĩţ ŷōũŕ śũƀďōḿàĩń ńàḿē ōŕ śēţ à ćũśţōḿ ďōḿàĩń.\"],\"O3oNi5\":[\"Ēḿàĩĺ\"],\"GpB8YV\":[\"Ēńţēŕƥŕĩśē\"],\"RgSsJ3\":[\"Ēŕŕōŕ ŵĥĩĺē śŵĩţćĥĩńĝ śũƀśćŕĩƥţĩōń \",[\"1\"],\".\"],\"JLxMta\":[\"Ēśţàƀĺĩśĥ Ŵēƀĥōōķ ēńďƥōĩńţś ƒōŕ ńōţĩƒĩćàţĩōńś ōń àśŷńćĥŕōńōũś ēvēńţś.\"],\"fV7V51\":[\"Ēxĩśţĩńĝ ōƀĴēćţś\"],\"Q0iobh\":[\"Ƒàĩĺēď ţō ćŕēàţē ōƀĴēćţ\"],\"aTieE0\":[\"ƒŕōḿ ḿōńţĥĺŷ ţō ŷēàŕĺŷ\"],\"K04lE5\":[\"ƒŕōḿ ŷēàŕĺŷ ţō ḿōńţĥĺŷ\"],\"Weq9zb\":[\"Ĝēńēŕàĺ\"],\"hWp1MY\":[\"Ĝŕàńţ Ţŵēńţŷ śũƥƥōŕţ ţēḿƥōŕàŕŷ àććēśś ţō ŷōũŕ ŵōŕķśƥàćē śō ŵē ćàń ţŕōũƀĺēśĥōōţ ƥŕōƀĺēḿś ōŕ ŕēćōvēŕ ćōńţēńţ ōń ŷōũŕ ƀēĥàĺƒ. Ŷōũ ćàń ŕēvōķē àććēśś àţ àńŷ ţĩḿē.\"],\"NoNwIX\":[\"Ĩńàćţĩvē\"],\"QdoUFL\":[\"Ĩńvàĺĩď ƒōŕḿ vàĺũēś\"],\"/Wrd4p\":[\"Ĩńvàĺĩď ōƀĴēćţ ďàţà\"],\"vXIe7J\":[\"Ĺàńĝũàĝē\"],\"36kYu0\":[\"Ḿàńàĝē ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"6YtxFj\":[\"Ńàḿē\"],\"J7w8lI\":[\"Ńàḿē ōƒ ŷōũŕ ŵōŕķśƥàćē\"],\"isRobC\":[\"Ńēŵ\"],\"hFxdey\":[\"Ńēŵ ŌƀĴēćţ\"],\"+FLRjr\":[\"ńōţ àĺĺōŵēď\"],\"FU94q4\":[\"ŌƀĴēćţ ćŕēàţēď śũććēśśƒũĺĺŷ\"],\"B3toQF\":[\"ŌƀĴēćţś\"],\"N0+GsR\":[\"Ƥĩćţũŕē\"],\"vERlcd\":[\"Ƥŕōƒĩĺē\"],\"BoNHR0\":[\"Śēàŕćĥ àń ōƀĴēćţ...\"],\"a3LDKx\":[\"Śēćũŕĩţŷ\"],\"AXTJAW\":[\"Śēĺēćţ ŷōũŕ ƥŕēƒēŕŕēď ĺàńĝũàĝē\"],\"tn41zE\":[\"Śēţ ţĥē ńàḿē ōƒ ŷōũŕ śũƀďōḿàĩń\"],\"vnS6Rf\":[\"ŚŚŌ\"],\"omhc+7\":[\"Śũƀďōḿàĩń àĺŕēàďŷ ţàķēń\"],\"OlC/tU\":[\"Śũƀďōḿàĩń ćàń ńōţ ƀē ĺōńĝēŕ ţĥàń 30 ćĥàŕàćţēŕś\"],\"ZETwlU\":[\"Śũƀďōḿàĩń ćàń ńōţ ƀē śĥōŕţēŕ ţĥàń 3 ćĥàŕàćţēŕś\"],\"AymUjZ\":[\"Śũƀśćŕĩƥţĩōń ĥàś ƀēēń śŵĩţćĥēď \",[\"0\"]],\"XYLcNv\":[\"Śũƥƥōŕţ\"],\"Sk5fyO\":[\"Śŵĩţćĥ \",[\"2\"]],\"z9maAp\":[\"Śŵĩţćĥ \",[\"3\"]],\"FwAweN\":[\"Śŵĩţćĥ ƀĩĺĺĩńĝ \",[\"4\"]],\"VGZYbZ\":[\"Ţĥē ēḿàĩĺ àśśōćĩàţēď ţō ŷōũŕ àććōũńţ\"],\"aqMzDX\":[\"ţō ḿōńţĥĺŷ\"],\"WXXiXO\":[\"ţō ŷēàŕĺŷ\"],\"oTTQsc\":[\"Ũśē ĺēţţēŕ, ńũḿƀēŕ àńď ďàśĥ ōńĺŷ. Śţàŕţ àńď ƒĩńĩśĥ ŵĩţĥ à ĺēţţēŕ ōŕ à ńũḿƀēŕ\"],\"7PzzBU\":[\"Ũśēŕ\"],\"KANz0G\":[\"Vĩēŵ ƀĩĺĺĩńĝ ďēţàĩĺś\"],\"v1kQyJ\":[\"Ŵēƀĥōōķś\"],\"pmUArF\":[\"Ŵōŕķśƥàćē\"],\"zSkMV0\":[\"Ŷōũ ŵĩĺĺ ƀē ćĥàŕĝēď ĩḿḿēďĩàţēĺŷ ƒōŕ ţĥē ƒũĺĺ ŷēàŕ.\"],\"XVnj6K\":[\"Ŷōũŕ ćŕēďĩţ ƀàĺàńćē ŵĩĺĺ ƀē ũśēď ţō ƥàŷ ţĥē ḿōńţĥĺŷ ƀĩĺĺś.\"],\"9ivpwk\":[\"Ŷōũŕ ńàḿē àś ĩţ ŵĩĺĺ ƀē ďĩśƥĺàŷēď\"],\"RhNbPE\":[\"Ŷōũŕ ŵōŕķśƥàćē ŵĩĺĺ ƀē ďĩśàƀĺēď\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"ssjjFt\":[\"Àƀōŕţ\"],\"uyJsf6\":[\"Àƀōũţ\"],\"nD0Y+a\":[\"Àććōũńţ Ďēĺēţĩōń\"],\"bPwFdf\":[\"Àććōũńţś\"],\"F6pfE9\":[\"Àćţĩvē\"],\"Mue4oc\":[\"Àćţĩvē ÀƤĨ ķēŷś ćŕēàţēď ƀŷ ŷōũ ōŕ ŷōũŕ ţēàḿ.\"],\"Z+OxK0\":[\"Àćţĩvē ÀƤĨś ķēŷś ćŕēàţēď ƀŷ ŷōũ ōŕ ŷōũŕ ţēàḿ.\"],\"dEO3Zx\":[\"Àďď ōƀĴēćţ\"],\"5h8ooz\":[\"ÀƤĨ ķēŷś\"],\"aAIQg2\":[\"Àƥƥēàŕàńćē\"],\"3iX0kh\":[\"Àŕē ŷōũ śũŕē ţĥàţ ŷōũ ŵàńţ ţō ćĥàńĝē ŷōũŕ ƀĩĺĺĩńĝ ĩńţēŕvàĺ?\"],\"TmDqlR\":[\"Àŕē ŷōũ śũŕē ţĥàţ ŷōũ ŵàńţ ţō ćĥàńĝē ŷōũŕ ƀĩĺĺĩńĝ ĩńţēŕvàĺ? \",[\"5\"]],\"jQyP8N\":[\"Àŕē ŷōũ śũŕē ţĥàţ ŷōũ ŵàńţ ţō ćĥàńĝē ŷōũŕ ƀĩĺĺĩńĝ ĩńţēŕvàĺ? \",[\"impact\"]],\"P8fBlG\":[\"Àũţĥēńţĩćàţĩōń\"],\"Dht9W3\":[\"ßàćķ ţō ćōńţēńţ\"],\"R+w/Va\":[\"ßĩĺĺĩńĝ\"],\"EUpfsd\":[\"Ćàĺēńďàŕś\"],\"rRK/Lf\":[\"Ćàńćēĺ Ƥĺàń\"],\"N6gPiD\":[\"Ćàńćēĺ ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"JcIGyw\":[\"Ćĥàńĝē \",[\"6\"]],\"OfzMnb\":[\"Ćĥàńĝē \",[\"to\"]],\"h1IXFK\":[\"Ćĥĩńēśē\"],\"+zUMwJ\":[\"Ćōńƒĩĝũŕē àń ŚŚŌ ćōńńēćţĩōń\"],\"aGwm+D\":[\"Ćōńƒĩĝũŕē ĥōŵ ďàţēś àŕē ďĩśƥĺàŷēď àćŕōśś ţĥē àƥƥ\"],\"xGVfLh\":[\"Ćōńţĩńũē\"],\"7eVkEH\":[\"Ćōƥŷ ĩńvĩţàţĩōń ĺĩńķ\"],\"uXGLuq\":[\"Ćŕēàţē ÀƤĨ ķēŷ\"],\"dkAPxi\":[\"Ćŕēàţē Ŵēƀĥōōķ\"],\"CMhr4u\":[\"Ćũśţōḿĩźē Ďōḿàĩń\"],\"bCJa9l\":[\"Ćũśţōḿĩźē ŷōũŕ ŵōŕķśƥàćē śēćũŕĩţŷ\"],\"Zz6Cxn\":[\"Ďàńĝēŕ źōńē\"],\"5cNMFz\":[\"Ďàţà ḿōďēĺ\"],\"Ud9zHv\":[\"Ďàţē àńď ţĩḿē\"],\"Y2ImVJ\":[\"Ďēƒĩńē ţĥē ńàḿē àńď ďēśćŕĩƥţĩōń ōƒ ŷōũŕ ōƀĴēćţ\"],\"ZDGm40\":[\"Ďēĺēţē àććōũńţ\"],\"kYu0eF\":[\"Ďēĺēţē ŵōŕķśƥàćē\"],\"mk2Ygs\":[\"Ďēĺēţē ŷōũŕ ŵĥōĺē ŵōŕķśƥàćē\"],\"n+SX4g\":[\"Ďēvēĺōƥēŕś\"],\"EoKe5U\":[\"Ďōḿàĩń\"],\"v+uKyy\":[\"Ēďĩţ ƀĩĺĺĩńĝ ĩńţēŕvàĺ\"],\"h2KoTu\":[\"Ēďĩţ ƥàŷḿēńţ ḿēţĥōď, śēē ŷōũŕ ĩńvōĩćēś àńď ḿōŕē\"],\"6o1M/Q\":[\"Ēďĩţ ŷōũŕ śũƀďōḿàĩń ńàḿē ōŕ śēţ à ćũśţōḿ ďōḿàĩń.\"],\"O3oNi5\":[\"Ēḿàĩĺ\"],\"lYGfRP\":[\"Ēńĝĺĩśĥ\"],\"GpB8YV\":[\"Ēńţēŕƥŕĩśē\"],\"RgSsJ3\":[\"Ēŕŕōŕ ŵĥĩĺē śŵĩţćĥĩńĝ śũƀśćŕĩƥţĩōń \",[\"1\"],\".\"],\"VSQxWH\":[\"Ēŕŕōŕ ŵĥĩĺē śŵĩţćĥĩńĝ śũƀśćŕĩƥţĩōń \",[\"to\"],\".\"],\"JLxMta\":[\"Ēśţàƀĺĩśĥ Ŵēƀĥōōķ ēńďƥōĩńţś ƒōŕ ńōţĩƒĩćàţĩōńś ōń àśŷńćĥŕōńōũś ēvēńţś.\"],\"fV7V51\":[\"Ēxĩśţĩńĝ ōƀĴēćţś\"],\"bKBhgb\":[\"Ēxƥēŕĩēńćē\"],\"i9qiyR\":[\"Ēxƥĩŕēś ĩń\"],\"Q0iobh\":[\"Ƒàĩĺēď ţō ćŕēàţē ōƀĴēćţ\"],\"vF68cg\":[\"Ƒĩēĺďś\"],\"nLC6tu\":[\"Ƒŕēńćĥ\"],\"aTieE0\":[\"ƒŕōḿ ḿōńţĥĺŷ ţō ŷēàŕĺŷ\"],\"K04lE5\":[\"ƒŕōḿ ŷēàŕĺŷ ţō ḿōńţĥĺŷ\"],\"Weq9zb\":[\"Ĝēńēŕàĺ\"],\"DDcvSo\":[\"Ĝēŕḿàń\"],\"NXEW3h\":[\"Ĝēţ ţĥē ḿōśţ ōũţ ōƒ ŷōũŕ ŵōŕķśƥàćē ƀŷ ĩńvĩţĩńĝ ŷōũŕ ţēàḿ.\"],\"hWp1MY\":[\"Ĝŕàńţ Ţŵēńţŷ śũƥƥōŕţ ţēḿƥōŕàŕŷ àććēśś ţō ŷōũŕ ŵōŕķśƥàćē śō ŵē ćàń ţŕōũƀĺēśĥōōţ ƥŕōƀĺēḿś ōŕ ŕēćōvēŕ ćōńţēńţ ōń ŷōũŕ ƀēĥàĺƒ. Ŷōũ ćàń ŕēvōķē àććēśś àţ àńŷ ţĩḿē.\"],\"NoNwIX\":[\"Ĩńàćţĩvē\"],\"nbfdhU\":[\"Ĩńţēĝŕàţĩōńś\"],\"QdoUFL\":[\"Ĩńvàĺĩď ƒōŕḿ vàĺũēś\"],\"/Wrd4p\":[\"Ĩńvàĺĩď ōƀĴēćţ ďàţà\"],\"0M8+El\":[\"Ĩńvĩţē ƀŷ ēḿàĩĺ\"],\"PWIq/W\":[\"Ĩńvĩţē ƀŷ ĺĩńķ\"],\"5IfmKA\":[\"Ĩńvĩţē ĺĩńķ śēńţ ţō ēḿàĩĺ àďďŕēśśēś\"],\"d+Y+rP\":[\"Ĩńvĩţē ŷōũŕ ţēàḿ\"],\"Lj7sBL\":[\"Ĩţàĺĩàń\"],\"vXIe7J\":[\"Ĺàńĝũàĝē\"],\"pQjjYo\":[\"Ĺĩńķ ćōƥĩēď ţō ćĺĩƥƀōàŕď\"],\"T6YjCk\":[\"Ḿàńàĝē Ḿēḿƀēŕś\"],\"4cjU2u\":[\"Ḿàńàĝē ţĥē ḿēḿƀēŕś ōƒ ŷōũŕ śƥàćē ĥēŕē\"],\"36kYu0\":[\"Ḿàńàĝē ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"wlQNTg\":[\"Ḿēḿƀēŕś\"],\"y5rS9U\":[\"Ḿĩĝŕàţē\"],\"6YtxFj\":[\"Ńàḿē\"],\"J7w8lI\":[\"Ńàḿē ōƒ ŷōũŕ ŵōŕķśƥàćē\"],\"isRobC\":[\"Ńēŵ\"],\"hFxdey\":[\"Ńēŵ ŌƀĴēćţ\"],\"+FLRjr\":[\"ńōţ àĺĺōŵēď\"],\"FU94q4\":[\"ŌƀĴēćţ ćŕēàţēď śũććēśśƒũĺĺŷ\"],\"B3toQF\":[\"ŌƀĴēćţś\"],\"KNz3EF\":[\"Ōƒƒ ţĥē ƀēàţēń ƥàţĥ\"],\"BzEFor\":[\"ōŕ\"],\"NRvxzv\":[\"Ƥàĝē Ńōţ Ƒōũńď | Ţŵēńţŷ\"],\"N0+GsR\":[\"Ƥĩćţũŕē\"],\"MOERNx\":[\"Ƥōŕţũĝũēśē\"],\"vERlcd\":[\"Ƥŕōƒĩĺē\"],\"YJgRqq\":[\"Ƥśēũďō-Ēńĝĺĩśĥ\"],\"5icoS1\":[\"Ŕēĺēàśēś\"],\"t/YqKh\":[\"Ŕēḿōvē\"],\"l1/uy2\":[\"Śēàŕćĥ à ƒĩēĺď...\"],\"k7kp5/\":[\"Śēàŕćĥ àń ĩńďēx...\"],\"BoNHR0\":[\"Śēàŕćĥ àń ōƀĴēćţ...\"],\"ofuw3g\":[\"Śēàŕćĥ ƒōŕ àń ōƀĴēćţ...\"],\"a3LDKx\":[\"Śēćũŕĩţŷ\"],\"AXTJAW\":[\"Śēĺēćţ ŷōũŕ ƥŕēƒēŕŕēď ĺàńĝũàĝē\"],\"mjK8F3\":[\"Śēńď àń ĩńvĩţē ēḿàĩĺ ţō ŷōũŕ ţēàḿ\"],\"tn41zE\":[\"Śēţ ţĥē ńàḿē ōƒ ŷōũŕ śũƀďōḿàĩń\"],\"Vy9kmk\":[\"Śĥàŕē ţĥĩś ĺĩńķ ţō ĩńvĩţē ũśēŕś ţō Ĵōĩń ŷōũŕ ŵōŕķśƥàćē\"],\"6Uau97\":[\"Śķĩƥ\"],\"65A04M\":[\"Śƥàńĩśĥ\"],\"vnS6Rf\":[\"ŚŚŌ\"],\"omhc+7\":[\"Śũƀďōḿàĩń àĺŕēàďŷ ţàķēń\"],\"OlC/tU\":[\"Śũƀďōḿàĩń ćàń ńōţ ƀē ĺōńĝēŕ ţĥàń 30 ćĥàŕàćţēŕś\"],\"ZETwlU\":[\"Śũƀďōḿàĩń ćàń ńōţ ƀē śĥōŕţēŕ ţĥàń 3 ćĥàŕàćţēŕś\"],\"AymUjZ\":[\"Śũƀśćŕĩƥţĩōń ĥàś ƀēēń śŵĩţćĥēď \",[\"0\"]],\"B5jRKH\":[\"Śũƀśćŕĩƥţĩōń ĥàś ƀēēń śŵĩţćĥēď \",[\"to\"]],\"XYLcNv\":[\"Śũƥƥōŕţ\"],\"Sk5fyO\":[\"Śŵĩţćĥ \",[\"2\"]],\"z9maAp\":[\"Śŵĩţćĥ \",[\"3\"]],\"9yk9d1\":[\"Śŵĩţćĥ \",[\"from\"]],\"qi74XZ\":[\"Śŵĩţćĥ \",[\"to\"]],\"FwAweN\":[\"Śŵĩţćĥ ƀĩĺĺĩńĝ \",[\"4\"]],\"L6Fg36\":[\"Śŵĩţćĥ ƀĩĺĺĩńĝ \",[\"to\"]],\"VGZYbZ\":[\"Ţĥē ēḿàĩĺ àśśōćĩàţēď ţō ŷōũŕ àććōũńţ\"],\"L97sPr\":[\"Ţĥē ƥàĝē ŷōũ'ŕē śēēķĩńĝ ĩś ēĩţĥēŕ ĝōńē ōŕ ńēvēŕ ŵàś. Ĺēţ'ś ĝēţ ŷōũ ƀàćķ ōń ţŕàćķ\"],\"7YiCMg\":[\"Ţĥĩś àćţĩōń ćàńńōţ ƀē ũńďōńē. Ţĥĩś ŵĩĺĺ ƥēŕḿàńēńţĺŷ ďēĺēţē ţĥĩś ũśēŕ àńď ŕēḿōvē ţĥēḿ ƒŕōḿ àĺĺ ţĥēĩŕ àśśĩĝńēḿēńţś.\"],\"gWGuHC\":[\"Ţĥĩś àćţĩōń ćàńńōţ ƀē ũńďōńē. Ţĥĩś ŵĩĺĺ ƥēŕḿàńēńţĺŷ ďēĺēţē ŷōũŕ ēńţĩŕē ŵōŕķśƥàćē. <0/> Ƥĺēàśē ţŷƥē ĩń ŷōũŕ ēḿàĩĺ ţō ćōńƒĩŕḿ.\"],\"aqMzDX\":[\"ţō ḿōńţĥĺŷ\"],\"WXXiXO\":[\"ţō ŷēàŕĺŷ\"],\"+zy2Nq\":[\"Ţŷƥē\"],\"ONWvwQ\":[\"Ũƥĺōàď\"],\"oTTQsc\":[\"Ũśē ĺēţţēŕ, ńũḿƀēŕ àńď ďàśĥ ōńĺŷ. Śţàŕţ àńď ƒĩńĩśĥ ŵĩţĥ à ĺēţţēŕ ōŕ à ńũḿƀēŕ\"],\"7PzzBU\":[\"Ũśēŕ\"],\"KANz0G\":[\"Vĩēŵ ƀĩĺĺĩńĝ ďēţàĩĺś\"],\"v1kQyJ\":[\"Ŵēƀĥōōķś\"],\"pmUArF\":[\"Ŵōŕķśƥàćē\"],\"VicISP\":[\"Ŵōŕķśƥàćē Ďēĺēţĩōń\"],\"zSkMV0\":[\"Ŷōũ ŵĩĺĺ ƀē ćĥàŕĝēď ĩḿḿēďĩàţēĺŷ ƒōŕ ţĥē ƒũĺĺ ŷēàŕ.\"],\"XVnj6K\":[\"Ŷōũŕ ćŕēďĩţ ƀàĺàńćē ŵĩĺĺ ƀē ũśēď ţō ƥàŷ ţĥē ḿōńţĥĺŷ ƀĩĺĺś.\"],\"9ivpwk\":[\"Ŷōũŕ ńàḿē àś ĩţ ŵĩĺĺ ƀē ďĩśƥĺàŷēď\"],\"RhNbPE\":[\"Ŷōũŕ ŵōŕķśƥàćē ŵĩĺĺ ƀē ďĩśàƀĺēď\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/pt.ts b/packages/twenty-front/src/locales/generated/pt.ts index 9a974ce1b..12b2051ce 100644 --- a/packages/twenty-front/src/locales/generated/pt.ts +++ b/packages/twenty-front/src/locales/generated/pt.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"uyJsf6\":[\"About\"],\"F6pfE9\":[\"Active\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"P8fBlG\":[\"Authentication\"],\"R+w/Va\":[\"Billing\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"+zUMwJ\":[\"Configure an SSO connection\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"5cNMFz\":[\"Data model\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"Q0iobh\":[\"Failed to create object\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"vXIe7J\":[\"Language\"],\"36kYu0\":[\"Manage your subscription\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"N0+GsR\":[\"Picture\"],\"vERlcd\":[\"Profile\"],\"BoNHR0\":[\"Search an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"ssjjFt\":[\"Abort\"],\"uyJsf6\":[\"About\"],\"nD0Y+a\":[\"Account Deletion\"],\"bPwFdf\":[\"Accounts\"],\"F6pfE9\":[\"Active\"],\"Mue4oc\":[\"Active API keys created by you or your team.\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"aAIQg2\":[\"Appearance\"],\"3iX0kh\":[\"Are you sure that you want to change your billing interval?\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"jQyP8N\":[\"Are you sure that you want to change your billing interval? \",[\"impact\"]],\"P8fBlG\":[\"Authentication\"],\"Dht9W3\":[\"Back to content\"],\"R+w/Va\":[\"Billing\"],\"EUpfsd\":[\"Calendars\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"OfzMnb\":[\"Change \",[\"to\"]],\"h1IXFK\":[\"Chinese\"],\"+zUMwJ\":[\"Configure an SSO connection\"],\"aGwm+D\":[\"Configure how dates are displayed across the app\"],\"xGVfLh\":[\"Continue\"],\"7eVkEH\":[\"Copy invitation link\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"Zz6Cxn\":[\"Danger zone\"],\"5cNMFz\":[\"Data model\"],\"Ud9zHv\":[\"Date and time\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"ZDGm40\":[\"Delete account\"],\"kYu0eF\":[\"Delete workspace\"],\"mk2Ygs\":[\"Delete your whole workspace\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"lYGfRP\":[\"English\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"VSQxWH\":[\"Error while switching subscription \",[\"to\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"bKBhgb\":[\"Experience\"],\"i9qiyR\":[\"Expires in\"],\"Q0iobh\":[\"Failed to create object\"],\"vF68cg\":[\"Fields\"],\"nLC6tu\":[\"French\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"German\"],\"NXEW3h\":[\"Get the most out of your workspace by inviting your team.\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"nbfdhU\":[\"Integrations\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"0M8+El\":[\"Invite by email\"],\"PWIq/W\":[\"Invite by link\"],\"5IfmKA\":[\"Invite link sent to email addresses\"],\"d+Y+rP\":[\"Invite your team\"],\"Lj7sBL\":[\"Italian\"],\"vXIe7J\":[\"Language\"],\"pQjjYo\":[\"Link copied to clipboard\"],\"T6YjCk\":[\"Manage Members\"],\"4cjU2u\":[\"Manage the members of your space here\"],\"36kYu0\":[\"Manage your subscription\"],\"wlQNTg\":[\"Members\"],\"y5rS9U\":[\"Migrate\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"KNz3EF\":[\"Off the beaten path\"],\"BzEFor\":[\"or\"],\"NRvxzv\":[\"Page Not Found | Twenty\"],\"N0+GsR\":[\"Picture\"],\"MOERNx\":[\"Portuguese\"],\"vERlcd\":[\"Profile\"],\"YJgRqq\":[\"Pseudo-English\"],\"5icoS1\":[\"Releases\"],\"t/YqKh\":[\"Remove\"],\"l1/uy2\":[\"Search a field...\"],\"k7kp5/\":[\"Search an index...\"],\"BoNHR0\":[\"Search an object...\"],\"ofuw3g\":[\"Search for an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"mjK8F3\":[\"Send an invite email to your team\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"Vy9kmk\":[\"Share this link to invite users to join your workspace\"],\"6Uau97\":[\"Skip\"],\"65A04M\":[\"Spanish\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"B5jRKH\":[\"Subscription has been switched \",[\"to\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"9yk9d1\":[\"Switch \",[\"from\"]],\"qi74XZ\":[\"Switch \",[\"to\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"L6Fg36\":[\"Switch billing \",[\"to\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"L97sPr\":[\"The page you're seeking is either gone or never was. Let's get you back on track\"],\"7YiCMg\":[\"This action cannot be undone. This will permanently delete this user and remove them from all their assignements.\"],\"gWGuHC\":[\"This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm.\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"+zy2Nq\":[\"Type\"],\"ONWvwQ\":[\"Upload\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Workspace Deletion\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/zh.ts b/packages/twenty-front/src/locales/generated/zh.ts index 9a974ce1b..12b2051ce 100644 --- a/packages/twenty-front/src/locales/generated/zh.ts +++ b/packages/twenty-front/src/locales/generated/zh.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"uyJsf6\":[\"About\"],\"F6pfE9\":[\"Active\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"P8fBlG\":[\"Authentication\"],\"R+w/Va\":[\"Billing\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"+zUMwJ\":[\"Configure an SSO connection\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"5cNMFz\":[\"Data model\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"Q0iobh\":[\"Failed to create object\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"vXIe7J\":[\"Language\"],\"36kYu0\":[\"Manage your subscription\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"N0+GsR\":[\"Picture\"],\"vERlcd\":[\"Profile\"],\"BoNHR0\":[\"Search an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"J/hVSQ\":[[\"0\"]],\"ssjjFt\":[\"Abort\"],\"uyJsf6\":[\"About\"],\"nD0Y+a\":[\"Account Deletion\"],\"bPwFdf\":[\"Accounts\"],\"F6pfE9\":[\"Active\"],\"Mue4oc\":[\"Active API keys created by you or your team.\"],\"Z+OxK0\":[\"Active APIs keys created by you or your team.\"],\"dEO3Zx\":[\"Add object\"],\"5h8ooz\":[\"API keys\"],\"aAIQg2\":[\"Appearance\"],\"3iX0kh\":[\"Are you sure that you want to change your billing interval?\"],\"TmDqlR\":[\"Are you sure that you want to change your billing interval? \",[\"5\"]],\"jQyP8N\":[\"Are you sure that you want to change your billing interval? \",[\"impact\"]],\"P8fBlG\":[\"Authentication\"],\"Dht9W3\":[\"Back to content\"],\"R+w/Va\":[\"Billing\"],\"EUpfsd\":[\"Calendars\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"JcIGyw\":[\"Change \",[\"6\"]],\"OfzMnb\":[\"Change \",[\"to\"]],\"h1IXFK\":[\"Chinese\"],\"+zUMwJ\":[\"Configure an SSO connection\"],\"aGwm+D\":[\"Configure how dates are displayed across the app\"],\"xGVfLh\":[\"Continue\"],\"7eVkEH\":[\"Copy invitation link\"],\"uXGLuq\":[\"Create API key\"],\"dkAPxi\":[\"Create Webhook\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"Zz6Cxn\":[\"Danger zone\"],\"5cNMFz\":[\"Data model\"],\"Ud9zHv\":[\"Date and time\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"ZDGm40\":[\"Delete account\"],\"kYu0eF\":[\"Delete workspace\"],\"mk2Ygs\":[\"Delete your whole workspace\"],\"n+SX4g\":[\"Developers\"],\"EoKe5U\":[\"Domain\"],\"v+uKyy\":[\"Edit billing interval\"],\"h2KoTu\":[\"Edit payment method, see your invoices and more\"],\"6o1M/Q\":[\"Edit your subdomain name or set a custom domain.\"],\"O3oNi5\":[\"Email\"],\"lYGfRP\":[\"English\"],\"GpB8YV\":[\"Enterprise\"],\"RgSsJ3\":[\"Error while switching subscription \",[\"1\"],\".\"],\"VSQxWH\":[\"Error while switching subscription \",[\"to\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"fV7V51\":[\"Existing objects\"],\"bKBhgb\":[\"Experience\"],\"i9qiyR\":[\"Expires in\"],\"Q0iobh\":[\"Failed to create object\"],\"vF68cg\":[\"Fields\"],\"nLC6tu\":[\"French\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"German\"],\"NXEW3h\":[\"Get the most out of your workspace by inviting your team.\"],\"hWp1MY\":[\"Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time.\"],\"NoNwIX\":[\"Inactive\"],\"nbfdhU\":[\"Integrations\"],\"QdoUFL\":[\"Invalid form values\"],\"/Wrd4p\":[\"Invalid object data\"],\"0M8+El\":[\"Invite by email\"],\"PWIq/W\":[\"Invite by link\"],\"5IfmKA\":[\"Invite link sent to email addresses\"],\"d+Y+rP\":[\"Invite your team\"],\"Lj7sBL\":[\"Italian\"],\"vXIe7J\":[\"Language\"],\"pQjjYo\":[\"Link copied to clipboard\"],\"T6YjCk\":[\"Manage Members\"],\"4cjU2u\":[\"Manage the members of your space here\"],\"36kYu0\":[\"Manage your subscription\"],\"wlQNTg\":[\"Members\"],\"y5rS9U\":[\"Migrate\"],\"6YtxFj\":[\"Name\"],\"J7w8lI\":[\"Name of your workspace\"],\"isRobC\":[\"New\"],\"hFxdey\":[\"New Object\"],\"+FLRjr\":[\"not allowed\"],\"FU94q4\":[\"Object created successfully\"],\"B3toQF\":[\"Objects\"],\"KNz3EF\":[\"Off the beaten path\"],\"BzEFor\":[\"or\"],\"NRvxzv\":[\"Page Not Found | Twenty\"],\"N0+GsR\":[\"Picture\"],\"MOERNx\":[\"Portuguese\"],\"vERlcd\":[\"Profile\"],\"YJgRqq\":[\"Pseudo-English\"],\"5icoS1\":[\"Releases\"],\"t/YqKh\":[\"Remove\"],\"l1/uy2\":[\"Search a field...\"],\"k7kp5/\":[\"Search an index...\"],\"BoNHR0\":[\"Search an object...\"],\"ofuw3g\":[\"Search for an object...\"],\"a3LDKx\":[\"Security\"],\"AXTJAW\":[\"Select your preferred language\"],\"mjK8F3\":[\"Send an invite email to your team\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"Vy9kmk\":[\"Share this link to invite users to join your workspace\"],\"6Uau97\":[\"Skip\"],\"65A04M\":[\"Spanish\"],\"vnS6Rf\":[\"SSO\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"AymUjZ\":[\"Subscription has been switched \",[\"0\"]],\"B5jRKH\":[\"Subscription has been switched \",[\"to\"]],\"XYLcNv\":[\"Support\"],\"Sk5fyO\":[\"Switch \",[\"2\"]],\"z9maAp\":[\"Switch \",[\"3\"]],\"9yk9d1\":[\"Switch \",[\"from\"]],\"qi74XZ\":[\"Switch \",[\"to\"]],\"FwAweN\":[\"Switch billing \",[\"4\"]],\"L6Fg36\":[\"Switch billing \",[\"to\"]],\"VGZYbZ\":[\"The email associated to your account\"],\"L97sPr\":[\"The page you're seeking is either gone or never was. Let's get you back on track\"],\"7YiCMg\":[\"This action cannot be undone. This will permanently delete this user and remove them from all their assignements.\"],\"gWGuHC\":[\"This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm.\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"+zy2Nq\":[\"Type\"],\"ONWvwQ\":[\"Upload\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"7PzzBU\":[\"User\"],\"KANz0G\":[\"View billing details\"],\"v1kQyJ\":[\"Webhooks\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Workspace Deletion\"],\"zSkMV0\":[\"You will be charged immediately for the full year.\"],\"XVnj6K\":[\"Your credit balance will be used to pay the monthly bills.\"],\"9ivpwk\":[\"Your name as it will be displayed\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/it.po b/packages/twenty-front/src/locales/it.po index 8ce578ac9..73e2c4f5b 100644 --- a/packages/twenty-front/src/locales/it.po +++ b/packages/twenty-front/src/locales/it.po @@ -6,25 +6,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: it\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#. placeholder {0}: settingsObjectsTableMetadataField.fieldLabel -#: src/pages/settings/data-model/SettingsObjects.tsx:180 -msgid "{0}" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:126 +#~ msgid "{0}" +#~ msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:157 +msgid "Abort" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:84 +#: src/pages/settings/data-model/SettingsNewObject.tsx:86 msgid "About" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:193 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:201 msgid "Active" msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:50 -msgid "Active APIs keys created by you or your team." +msgid "Active API keys created by you or your team." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:144 +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +#~ msgid "Active APIs keys created by you or your team." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:149 msgid "Add object" msgstr "" @@ -32,37 +54,76 @@ msgstr "" msgid "API keys" msgstr "" -#. placeholder {5}: switchingInfo.impact -#: src/pages/settings/SettingsBilling.tsx:190 -msgid "Are you sure that you want to change your billing interval? {5}" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" msgstr "" +#: src/pages/settings/SettingsBilling.tsx:190 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:190 +#~ msgid "Are you sure that you want to change your billing interval? {5}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +#~ msgid "Are you sure that you want to change your billing interval? {impact}" +#~ msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:63 msgid "Authentication" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:128 -#: src/pages/settings/SettingsBilling.tsx:134 +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:129 +#: src/pages/settings/SettingsBilling.tsx:135 msgid "Billing" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:174 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +msgid "Calendars" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:175 msgid "Cancel Plan" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:169 +#: src/pages/settings/SettingsBilling.tsx:170 msgid "Cancel your subscription" msgstr "" -#. placeholder {6}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:194 -msgid "Change {6}" +#~ msgid "Change {6}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:194 +msgid "Change {to}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:86 +msgid "Chinese" msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:48 msgid "Configure an SSO connection" msgstr "" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +msgid "Continue" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "" @@ -79,30 +140,52 @@ msgstr "" msgid "Customize your workspace security" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Data model" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:85 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:87 msgid "Define the name and description of your object" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 +msgid "Delete workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 +msgid "Delete your whole workspace" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:35 #: src/pages/settings/developers/SettingsDevelopers.tsx:42 msgid "Developers" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:135 #: src/pages/settings/workspace/SettingsDomain.tsx:150 msgid "Domain" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:156 +#: src/pages/settings/SettingsBilling.tsx:157 msgid "Edit billing interval" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:144 +#: src/pages/settings/SettingsBilling.tsx:145 msgid "Edit payment method, see your invoices and more" msgstr "" @@ -110,31 +193,57 @@ msgstr "" msgid "Edit your subdomain name or set a custom domain." msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:180 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:256 #: src/pages/settings/SettingsProfile.tsx:42 msgid "Email" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:82 +msgid "English" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:51 msgid "Enterprise" msgstr "" -#. placeholder {1}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:118 -msgid "Error while switching subscription {1}." +#~ msgid "Error while switching subscription {1}." +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:121 +msgid "Error while switching subscription {to}." msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:66 msgid "Establish Webhook endpoints for notifications on asynchronous events." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:164 +#: src/pages/settings/data-model/SettingsObjects.tsx:167 msgid "Existing objects" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:56 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +msgid "Experience" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:57 msgid "Failed to create object" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:42 +msgid "Fields" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +msgid "French" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:45 msgid "from monthly to yearly" msgstr "" @@ -145,35 +254,91 @@ msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:132 msgid "General" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:70 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:65 msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:214 +#: src/pages/settings/data-model/SettingsObjects.tsx:217 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:215 msgid "Inactive" msgstr "" +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +msgid "Integrations" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:87 msgid "Invalid form values" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:52 +#: src/pages/settings/data-model/SettingsNewObject.tsx:53 msgid "Invalid object data" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:152 +msgid "Invite link sent to email addresses" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:181 +msgid "Invite your team" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:74 +msgid "Italian" +msgstr "" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 msgid "Language" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:143 +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:167 +msgid "Manage Members" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:168 +msgid "Manage the members of your space here" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:144 msgid "Manage your subscription" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +msgid "Members" +msgstr "" + +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:22 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:28 +msgid "Migrate" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 msgid "Name" @@ -183,11 +348,11 @@ msgstr "" msgid "Name of your workspace" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +#: src/pages/settings/data-model/SettingsNewObject.tsx:77 msgid "New" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +#: src/pages/settings/data-model/SettingsNewObject.tsx:67 msgid "New Object" msgstr "" @@ -195,27 +360,68 @@ msgstr "" msgid "not allowed" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:45 +#: src/pages/settings/data-model/SettingsNewObject.tsx:46 msgid "Object created successfully" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:156 -#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjects.tsx:160 +#: src/pages/settings/data-model/SettingsNewObject.tsx:74 msgid "Objects" msgstr "" +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found | Twenty" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:62 +msgid "Portuguese" +msgstr "" + #: src/pages/settings/SettingsProfile.tsx:19 #: src/pages/settings/SettingsProfile.tsx:25 msgid "Profile" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:168 -msgid "Search an object..." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Pseudo-English" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:173 +msgid "Remove" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:183 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:116 +msgid "Search an index..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +#~ msgid "Search an object..." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +msgid "Search for an object..." msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:33 @@ -227,10 +433,26 @@ msgstr "" msgid "Select your preferred language" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:151 msgid "Set the name of your subdomain" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:78 +msgid "Spanish" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:47 msgid "SSO" msgstr "" @@ -247,34 +469,58 @@ msgstr "" msgid "Subdomain can not be shorter than 3 characters" msgstr "" -#. placeholder {0}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:113 -msgid "Subscription has been switched {0}" +#~ msgid "Subscription has been switched {0}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:117 +msgid "Subscription has been switched {to}" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:63 msgid "Support" msgstr "" -#. placeholder {2}: switchingInfo.from #: src/pages/settings/SettingsBilling.tsx:157 -msgid "Switch {2}" -msgstr "" +#~ msgid "Switch {2}" +#~ msgstr "" -#. placeholder {3}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:161 -msgid "Switch {3}" +#~ msgid "Switch {3}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:162 +msgid "Switch {to}" msgstr "" -#. placeholder {4}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {4}" +#~ msgid "Switch billing {4}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:188 +msgid "Switch billing {to}" msgstr "" #: src/pages/settings/SettingsProfile.tsx:43 msgid "The email associated to your account" msgstr "" +#: src/pages/not-found/NotFound.tsx:50 +msgid "The page you're seeking is either gone or never was. Let's get you back on track" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:323 +msgid "This action cannot be undone. This will permanently delete this user and remove them from all their assignements." +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:48 +msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:51 msgid "to monthly" msgstr "" @@ -283,15 +529,25 @@ msgstr "" msgid "to yearly" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:55 +msgid "Type" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:165 +msgid "Upload" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:51 msgid "Use letter, number and dash only. Start and finish with a letter or a number" msgstr "" #: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 msgid "User" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:148 +#: src/pages/settings/SettingsBilling.tsx:149 msgid "View billing details" msgstr "" @@ -299,16 +555,24 @@ msgstr "" msgid "Webhooks" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 #: src/pages/settings/SettingsWorkspace.tsx:32 -#: src/pages/settings/SettingsBilling.tsx:131 +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/Releases.tsx:114 #: src/pages/settings/workspace/SettingsDomain.tsx:128 #: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 -#: src/pages/settings/data-model/SettingsObjects.tsx:152 -#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjects.tsx:157 +#: src/pages/settings/data-model/SettingsNewObject.tsx:70 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:25 msgid "Workspace" msgstr "" +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:46 msgid "You will be charged immediately for the full year." msgstr "" @@ -321,6 +585,6 @@ msgstr "" msgid "Your name as it will be displayed" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:170 +#: src/pages/settings/SettingsBilling.tsx:171 msgid "Your workspace will be disabled" msgstr "" diff --git a/packages/twenty-front/src/locales/pseudo-en.po b/packages/twenty-front/src/locales/pseudo-en.po index d39e32c82..2e5662a93 100644 --- a/packages/twenty-front/src/locales/pseudo-en.po +++ b/packages/twenty-front/src/locales/pseudo-en.po @@ -6,25 +6,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: pseudo-en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#. placeholder {0}: settingsObjectsTableMetadataField.fieldLabel -#: src/pages/settings/data-model/SettingsObjects.tsx:180 -msgid "{0}" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:126 +#~ msgid "{0}" +#~ msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:157 +msgid "Abort" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:84 +#: src/pages/settings/data-model/SettingsNewObject.tsx:86 msgid "About" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:193 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:201 msgid "Active" msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:50 -msgid "Active APIs keys created by you or your team." +msgid "Active API keys created by you or your team." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:144 +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +#~ msgid "Active APIs keys created by you or your team." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:149 msgid "Add object" msgstr "" @@ -32,37 +54,76 @@ msgstr "" msgid "API keys" msgstr "" -#. placeholder {5}: switchingInfo.impact -#: src/pages/settings/SettingsBilling.tsx:190 -msgid "Are you sure that you want to change your billing interval? {5}" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" msgstr "" +#: src/pages/settings/SettingsBilling.tsx:190 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:190 +#~ msgid "Are you sure that you want to change your billing interval? {5}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +#~ msgid "Are you sure that you want to change your billing interval? {impact}" +#~ msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:63 msgid "Authentication" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:128 -#: src/pages/settings/SettingsBilling.tsx:134 +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:129 +#: src/pages/settings/SettingsBilling.tsx:135 msgid "Billing" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:174 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +msgid "Calendars" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:175 msgid "Cancel Plan" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:169 +#: src/pages/settings/SettingsBilling.tsx:170 msgid "Cancel your subscription" msgstr "" -#. placeholder {6}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:194 -msgid "Change {6}" +#~ msgid "Change {6}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:194 +msgid "Change {to}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:86 +msgid "Chinese" msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:48 msgid "Configure an SSO connection" msgstr "" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +msgid "Continue" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "" @@ -79,30 +140,52 @@ msgstr "" msgid "Customize your workspace security" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Data model" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:85 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:87 msgid "Define the name and description of your object" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 +msgid "Delete workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 +msgid "Delete your whole workspace" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:35 #: src/pages/settings/developers/SettingsDevelopers.tsx:42 msgid "Developers" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:135 #: src/pages/settings/workspace/SettingsDomain.tsx:150 msgid "Domain" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:156 +#: src/pages/settings/SettingsBilling.tsx:157 msgid "Edit billing interval" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:144 +#: src/pages/settings/SettingsBilling.tsx:145 msgid "Edit payment method, see your invoices and more" msgstr "" @@ -110,31 +193,57 @@ msgstr "" msgid "Edit your subdomain name or set a custom domain." msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:180 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:256 #: src/pages/settings/SettingsProfile.tsx:42 msgid "Email" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:82 +msgid "English" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:51 msgid "Enterprise" msgstr "" -#. placeholder {1}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:118 -msgid "Error while switching subscription {1}." +#~ msgid "Error while switching subscription {1}." +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:121 +msgid "Error while switching subscription {to}." msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:66 msgid "Establish Webhook endpoints for notifications on asynchronous events." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:164 +#: src/pages/settings/data-model/SettingsObjects.tsx:167 msgid "Existing objects" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:56 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +msgid "Experience" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:57 msgid "Failed to create object" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:42 +msgid "Fields" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +msgid "French" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:45 msgid "from monthly to yearly" msgstr "" @@ -145,35 +254,91 @@ msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:132 msgid "General" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:70 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:65 msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:214 +#: src/pages/settings/data-model/SettingsObjects.tsx:217 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:215 msgid "Inactive" msgstr "" +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +msgid "Integrations" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:87 msgid "Invalid form values" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:52 +#: src/pages/settings/data-model/SettingsNewObject.tsx:53 msgid "Invalid object data" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:152 +msgid "Invite link sent to email addresses" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:181 +msgid "Invite your team" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:74 +msgid "Italian" +msgstr "" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 msgid "Language" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:143 +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:167 +msgid "Manage Members" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:168 +msgid "Manage the members of your space here" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:144 msgid "Manage your subscription" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +msgid "Members" +msgstr "" + +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:22 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:28 +msgid "Migrate" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 msgid "Name" @@ -183,11 +348,11 @@ msgstr "" msgid "Name of your workspace" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +#: src/pages/settings/data-model/SettingsNewObject.tsx:77 msgid "New" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +#: src/pages/settings/data-model/SettingsNewObject.tsx:67 msgid "New Object" msgstr "" @@ -195,27 +360,68 @@ msgstr "" msgid "not allowed" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:45 +#: src/pages/settings/data-model/SettingsNewObject.tsx:46 msgid "Object created successfully" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:156 -#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjects.tsx:160 +#: src/pages/settings/data-model/SettingsNewObject.tsx:74 msgid "Objects" msgstr "" +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found | Twenty" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:62 +msgid "Portuguese" +msgstr "" + #: src/pages/settings/SettingsProfile.tsx:19 #: src/pages/settings/SettingsProfile.tsx:25 msgid "Profile" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:168 -msgid "Search an object..." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Pseudo-English" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:173 +msgid "Remove" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:183 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:116 +msgid "Search an index..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +#~ msgid "Search an object..." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +msgid "Search for an object..." msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:33 @@ -227,10 +433,26 @@ msgstr "" msgid "Select your preferred language" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:151 msgid "Set the name of your subdomain" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:78 +msgid "Spanish" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:47 msgid "SSO" msgstr "" @@ -247,34 +469,58 @@ msgstr "" msgid "Subdomain can not be shorter than 3 characters" msgstr "" -#. placeholder {0}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:113 -msgid "Subscription has been switched {0}" +#~ msgid "Subscription has been switched {0}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:117 +msgid "Subscription has been switched {to}" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:63 msgid "Support" msgstr "" -#. placeholder {2}: switchingInfo.from #: src/pages/settings/SettingsBilling.tsx:157 -msgid "Switch {2}" -msgstr "" +#~ msgid "Switch {2}" +#~ msgstr "" -#. placeholder {3}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:161 -msgid "Switch {3}" +#~ msgid "Switch {3}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:162 +msgid "Switch {to}" msgstr "" -#. placeholder {4}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {4}" +#~ msgid "Switch billing {4}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:188 +msgid "Switch billing {to}" msgstr "" #: src/pages/settings/SettingsProfile.tsx:43 msgid "The email associated to your account" msgstr "" +#: src/pages/not-found/NotFound.tsx:50 +msgid "The page you're seeking is either gone or never was. Let's get you back on track" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:323 +msgid "This action cannot be undone. This will permanently delete this user and remove them from all their assignements." +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:48 +msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:51 msgid "to monthly" msgstr "" @@ -283,15 +529,25 @@ msgstr "" msgid "to yearly" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:55 +msgid "Type" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:165 +msgid "Upload" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:51 msgid "Use letter, number and dash only. Start and finish with a letter or a number" msgstr "" #: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 msgid "User" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:148 +#: src/pages/settings/SettingsBilling.tsx:149 msgid "View billing details" msgstr "" @@ -299,16 +555,24 @@ msgstr "" msgid "Webhooks" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 #: src/pages/settings/SettingsWorkspace.tsx:32 -#: src/pages/settings/SettingsBilling.tsx:131 +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/Releases.tsx:114 #: src/pages/settings/workspace/SettingsDomain.tsx:128 #: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 -#: src/pages/settings/data-model/SettingsObjects.tsx:152 -#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjects.tsx:157 +#: src/pages/settings/data-model/SettingsNewObject.tsx:70 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:25 msgid "Workspace" msgstr "" +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:46 msgid "You will be charged immediately for the full year." msgstr "" @@ -321,6 +585,6 @@ msgstr "" msgid "Your name as it will be displayed" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:170 +#: src/pages/settings/SettingsBilling.tsx:171 msgid "Your workspace will be disabled" msgstr "" diff --git a/packages/twenty-front/src/locales/pt.po b/packages/twenty-front/src/locales/pt.po index d78dfd6b9..4737cf7ee 100644 --- a/packages/twenty-front/src/locales/pt.po +++ b/packages/twenty-front/src/locales/pt.po @@ -6,25 +6,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: pt\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#. placeholder {0}: settingsObjectsTableMetadataField.fieldLabel -#: src/pages/settings/data-model/SettingsObjects.tsx:180 -msgid "{0}" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:126 +#~ msgid "{0}" +#~ msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:157 +msgid "Abort" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:84 +#: src/pages/settings/data-model/SettingsNewObject.tsx:86 msgid "About" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:193 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:201 msgid "Active" msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:50 -msgid "Active APIs keys created by you or your team." +msgid "Active API keys created by you or your team." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:144 +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +#~ msgid "Active APIs keys created by you or your team." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:149 msgid "Add object" msgstr "" @@ -32,37 +54,76 @@ msgstr "" msgid "API keys" msgstr "" -#. placeholder {5}: switchingInfo.impact -#: src/pages/settings/SettingsBilling.tsx:190 -msgid "Are you sure that you want to change your billing interval? {5}" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" msgstr "" +#: src/pages/settings/SettingsBilling.tsx:190 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:190 +#~ msgid "Are you sure that you want to change your billing interval? {5}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +#~ msgid "Are you sure that you want to change your billing interval? {impact}" +#~ msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:63 msgid "Authentication" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:128 -#: src/pages/settings/SettingsBilling.tsx:134 +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:129 +#: src/pages/settings/SettingsBilling.tsx:135 msgid "Billing" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:174 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +msgid "Calendars" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:175 msgid "Cancel Plan" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:169 +#: src/pages/settings/SettingsBilling.tsx:170 msgid "Cancel your subscription" msgstr "" -#. placeholder {6}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:194 -msgid "Change {6}" +#~ msgid "Change {6}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:194 +msgid "Change {to}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:86 +msgid "Chinese" msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:48 msgid "Configure an SSO connection" msgstr "" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +msgid "Continue" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "" @@ -79,30 +140,52 @@ msgstr "" msgid "Customize your workspace security" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Data model" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:85 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:87 msgid "Define the name and description of your object" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 +msgid "Delete workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 +msgid "Delete your whole workspace" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:35 #: src/pages/settings/developers/SettingsDevelopers.tsx:42 msgid "Developers" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:135 #: src/pages/settings/workspace/SettingsDomain.tsx:150 msgid "Domain" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:156 +#: src/pages/settings/SettingsBilling.tsx:157 msgid "Edit billing interval" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:144 +#: src/pages/settings/SettingsBilling.tsx:145 msgid "Edit payment method, see your invoices and more" msgstr "" @@ -110,31 +193,57 @@ msgstr "" msgid "Edit your subdomain name or set a custom domain." msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:180 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:256 #: src/pages/settings/SettingsProfile.tsx:42 msgid "Email" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:82 +msgid "English" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:51 msgid "Enterprise" msgstr "" -#. placeholder {1}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:118 -msgid "Error while switching subscription {1}." +#~ msgid "Error while switching subscription {1}." +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:121 +msgid "Error while switching subscription {to}." msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:66 msgid "Establish Webhook endpoints for notifications on asynchronous events." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:164 +#: src/pages/settings/data-model/SettingsObjects.tsx:167 msgid "Existing objects" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:56 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +msgid "Experience" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:57 msgid "Failed to create object" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:42 +msgid "Fields" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +msgid "French" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:45 msgid "from monthly to yearly" msgstr "" @@ -145,35 +254,91 @@ msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:132 msgid "General" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:70 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:65 msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:214 +#: src/pages/settings/data-model/SettingsObjects.tsx:217 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:215 msgid "Inactive" msgstr "" +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +msgid "Integrations" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:87 msgid "Invalid form values" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:52 +#: src/pages/settings/data-model/SettingsNewObject.tsx:53 msgid "Invalid object data" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:152 +msgid "Invite link sent to email addresses" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:181 +msgid "Invite your team" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:74 +msgid "Italian" +msgstr "" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 msgid "Language" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:143 +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:167 +msgid "Manage Members" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:168 +msgid "Manage the members of your space here" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:144 msgid "Manage your subscription" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +msgid "Members" +msgstr "" + +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:22 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:28 +msgid "Migrate" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 msgid "Name" @@ -183,11 +348,11 @@ msgstr "" msgid "Name of your workspace" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +#: src/pages/settings/data-model/SettingsNewObject.tsx:77 msgid "New" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +#: src/pages/settings/data-model/SettingsNewObject.tsx:67 msgid "New Object" msgstr "" @@ -195,27 +360,68 @@ msgstr "" msgid "not allowed" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:45 +#: src/pages/settings/data-model/SettingsNewObject.tsx:46 msgid "Object created successfully" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:156 -#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjects.tsx:160 +#: src/pages/settings/data-model/SettingsNewObject.tsx:74 msgid "Objects" msgstr "" +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found | Twenty" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:62 +msgid "Portuguese" +msgstr "" + #: src/pages/settings/SettingsProfile.tsx:19 #: src/pages/settings/SettingsProfile.tsx:25 msgid "Profile" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:168 -msgid "Search an object..." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Pseudo-English" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:173 +msgid "Remove" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:183 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:116 +msgid "Search an index..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +#~ msgid "Search an object..." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +msgid "Search for an object..." msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:33 @@ -227,10 +433,26 @@ msgstr "" msgid "Select your preferred language" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:151 msgid "Set the name of your subdomain" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:78 +msgid "Spanish" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:47 msgid "SSO" msgstr "" @@ -247,34 +469,58 @@ msgstr "" msgid "Subdomain can not be shorter than 3 characters" msgstr "" -#. placeholder {0}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:113 -msgid "Subscription has been switched {0}" +#~ msgid "Subscription has been switched {0}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:117 +msgid "Subscription has been switched {to}" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:63 msgid "Support" msgstr "" -#. placeholder {2}: switchingInfo.from #: src/pages/settings/SettingsBilling.tsx:157 -msgid "Switch {2}" -msgstr "" +#~ msgid "Switch {2}" +#~ msgstr "" -#. placeholder {3}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:161 -msgid "Switch {3}" +#~ msgid "Switch {3}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:162 +msgid "Switch {to}" msgstr "" -#. placeholder {4}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {4}" +#~ msgid "Switch billing {4}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:188 +msgid "Switch billing {to}" msgstr "" #: src/pages/settings/SettingsProfile.tsx:43 msgid "The email associated to your account" msgstr "" +#: src/pages/not-found/NotFound.tsx:50 +msgid "The page you're seeking is either gone or never was. Let's get you back on track" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:323 +msgid "This action cannot be undone. This will permanently delete this user and remove them from all their assignements." +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:48 +msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:51 msgid "to monthly" msgstr "" @@ -283,15 +529,25 @@ msgstr "" msgid "to yearly" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:55 +msgid "Type" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:165 +msgid "Upload" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:51 msgid "Use letter, number and dash only. Start and finish with a letter or a number" msgstr "" #: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 msgid "User" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:148 +#: src/pages/settings/SettingsBilling.tsx:149 msgid "View billing details" msgstr "" @@ -299,16 +555,24 @@ msgstr "" msgid "Webhooks" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 #: src/pages/settings/SettingsWorkspace.tsx:32 -#: src/pages/settings/SettingsBilling.tsx:131 +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/Releases.tsx:114 #: src/pages/settings/workspace/SettingsDomain.tsx:128 #: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 -#: src/pages/settings/data-model/SettingsObjects.tsx:152 -#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjects.tsx:157 +#: src/pages/settings/data-model/SettingsNewObject.tsx:70 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:25 msgid "Workspace" msgstr "" +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:46 msgid "You will be charged immediately for the full year." msgstr "" @@ -321,6 +585,6 @@ msgstr "" msgid "Your name as it will be displayed" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:170 +#: src/pages/settings/SettingsBilling.tsx:171 msgid "Your workspace will be disabled" msgstr "" diff --git a/packages/twenty-front/src/locales/zh.po b/packages/twenty-front/src/locales/zh.po index 645249a70..737e8f173 100644 --- a/packages/twenty-front/src/locales/zh.po +++ b/packages/twenty-front/src/locales/zh.po @@ -6,25 +6,47 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: zh\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" -#. placeholder {0}: settingsObjectsTableMetadataField.fieldLabel -#: src/pages/settings/data-model/SettingsObjects.tsx:180 -msgid "{0}" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:126 +#~ msgid "{0}" +#~ msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:157 +msgid "Abort" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:84 +#: src/pages/settings/data-model/SettingsNewObject.tsx:86 msgid "About" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:193 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:201 msgid "Active" msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:50 -msgid "Active APIs keys created by you or your team." +msgid "Active API keys created by you or your team." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:144 +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +#~ msgid "Active APIs keys created by you or your team." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:149 msgid "Add object" msgstr "" @@ -32,37 +54,76 @@ msgstr "" msgid "API keys" msgstr "" -#. placeholder {5}: switchingInfo.impact -#: src/pages/settings/SettingsBilling.tsx:190 -msgid "Are you sure that you want to change your billing interval? {5}" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" msgstr "" +#: src/pages/settings/SettingsBilling.tsx:190 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:190 +#~ msgid "Are you sure that you want to change your billing interval? {5}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +#~ msgid "Are you sure that you want to change your billing interval? {impact}" +#~ msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:63 msgid "Authentication" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:128 -#: src/pages/settings/SettingsBilling.tsx:134 +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:129 +#: src/pages/settings/SettingsBilling.tsx:135 msgid "Billing" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:174 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +msgid "Calendars" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:175 msgid "Cancel Plan" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:169 +#: src/pages/settings/SettingsBilling.tsx:170 msgid "Cancel your subscription" msgstr "" -#. placeholder {6}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:194 -msgid "Change {6}" +#~ msgid "Change {6}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:194 +msgid "Change {to}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:86 +msgid "Chinese" msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:48 msgid "Configure an SSO connection" msgstr "" +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +msgid "Continue" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "" @@ -79,30 +140,52 @@ msgstr "" msgid "Customize your workspace security" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Data model" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:85 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:87 msgid "Define the name and description of your object" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 +msgid "Delete workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 +msgid "Delete your whole workspace" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:35 #: src/pages/settings/developers/SettingsDevelopers.tsx:42 msgid "Developers" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:135 #: src/pages/settings/workspace/SettingsDomain.tsx:150 msgid "Domain" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:156 +#: src/pages/settings/SettingsBilling.tsx:157 msgid "Edit billing interval" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:144 +#: src/pages/settings/SettingsBilling.tsx:145 msgid "Edit payment method, see your invoices and more" msgstr "" @@ -110,31 +193,57 @@ msgstr "" msgid "Edit your subdomain name or set a custom domain." msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:180 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:256 #: src/pages/settings/SettingsProfile.tsx:42 msgid "Email" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:82 +msgid "English" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:51 msgid "Enterprise" msgstr "" -#. placeholder {1}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:118 -msgid "Error while switching subscription {1}." +#~ msgid "Error while switching subscription {1}." +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:121 +msgid "Error while switching subscription {to}." msgstr "" #: src/pages/settings/developers/SettingsDevelopers.tsx:66 msgid "Establish Webhook endpoints for notifications on asynchronous events." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:164 +#: src/pages/settings/data-model/SettingsObjects.tsx:167 msgid "Existing objects" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:56 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +msgid "Experience" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:57 msgid "Failed to create object" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:42 +msgid "Fields" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +msgid "French" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:45 msgid "from monthly to yearly" msgstr "" @@ -145,35 +254,91 @@ msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:125 #: src/pages/settings/workspace/SettingsDomain.tsx:132 msgid "General" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:70 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:65 msgid "Grant Twenty support temporary access to your workspace so we can troubleshoot problems or recover content on your behalf. You can revoke access at any time." msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:214 +#: src/pages/settings/data-model/SettingsObjects.tsx:217 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:215 msgid "Inactive" msgstr "" +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +msgid "Integrations" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:87 msgid "Invalid form values" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:52 +#: src/pages/settings/data-model/SettingsNewObject.tsx:53 msgid "Invalid object data" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:152 +msgid "Invite link sent to email addresses" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:181 +msgid "Invite your team" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:74 +msgid "Italian" +msgstr "" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 msgid "Language" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:143 +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:167 +msgid "Manage Members" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:168 +msgid "Manage the members of your space here" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:144 msgid "Manage your subscription" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +msgid "Members" +msgstr "" + +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:22 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:28 +msgid "Migrate" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 msgid "Name" @@ -183,11 +348,11 @@ msgstr "" msgid "Name of your workspace" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +#: src/pages/settings/data-model/SettingsNewObject.tsx:77 msgid "New" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +#: src/pages/settings/data-model/SettingsNewObject.tsx:67 msgid "New Object" msgstr "" @@ -195,27 +360,68 @@ msgstr "" msgid "not allowed" msgstr "" -#: src/pages/settings/data-model/SettingsNewObject.tsx:45 +#: src/pages/settings/data-model/SettingsNewObject.tsx:46 msgid "Object created successfully" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:156 -#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjects.tsx:160 +#: src/pages/settings/data-model/SettingsNewObject.tsx:74 msgid "Objects" msgstr "" +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found | Twenty" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" msgstr "" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:62 +msgid "Portuguese" +msgstr "" + #: src/pages/settings/SettingsProfile.tsx:19 #: src/pages/settings/SettingsProfile.tsx:25 msgid "Profile" msgstr "" -#: src/pages/settings/data-model/SettingsObjects.tsx:168 -msgid "Search an object..." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Pseudo-English" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:173 +msgid "Remove" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:183 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:116 +msgid "Search an index..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +#~ msgid "Search an object..." +#~ msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:171 +msgid "Search for an object..." msgstr "" #: src/pages/settings/security/SettingsSecurity.tsx:33 @@ -227,10 +433,26 @@ msgstr "" msgid "Select your preferred language" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:151 msgid "Set the name of your subdomain" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:78 +msgid "Spanish" +msgstr "" + #: src/pages/settings/security/SettingsSecurity.tsx:47 msgid "SSO" msgstr "" @@ -247,34 +469,58 @@ msgstr "" msgid "Subdomain can not be shorter than 3 characters" msgstr "" -#. placeholder {0}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:113 -msgid "Subscription has been switched {0}" +#~ msgid "Subscription has been switched {0}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:117 +msgid "Subscription has been switched {to}" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:63 msgid "Support" msgstr "" -#. placeholder {2}: switchingInfo.from #: src/pages/settings/SettingsBilling.tsx:157 -msgid "Switch {2}" -msgstr "" +#~ msgid "Switch {2}" +#~ msgstr "" -#. placeholder {3}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:161 -msgid "Switch {3}" +#~ msgid "Switch {3}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:162 +msgid "Switch {to}" msgstr "" -#. placeholder {4}: switchingInfo.to #: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {4}" +#~ msgid "Switch billing {4}" +#~ msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:188 +msgid "Switch billing {to}" msgstr "" #: src/pages/settings/SettingsProfile.tsx:43 msgid "The email associated to your account" msgstr "" +#: src/pages/not-found/NotFound.tsx:50 +msgid "The page you're seeking is either gone or never was. Let's get you back on track" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:323 +msgid "This action cannot be undone. This will permanently delete this user and remove them from all their assignements." +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:48 +msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:51 msgid "to monthly" msgstr "" @@ -283,15 +529,25 @@ msgstr "" msgid "to yearly" msgstr "" +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:55 +msgid "Type" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:165 +msgid "Upload" +msgstr "" + #: src/pages/settings/workspace/SettingsDomain.tsx:51 msgid "Use letter, number and dash only. Start and finish with a letter or a number" msgstr "" #: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 msgid "User" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:148 +#: src/pages/settings/SettingsBilling.tsx:149 msgid "View billing details" msgstr "" @@ -299,16 +555,24 @@ msgstr "" msgid "Webhooks" msgstr "" +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 #: src/pages/settings/SettingsWorkspace.tsx:32 -#: src/pages/settings/SettingsBilling.tsx:131 +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/Releases.tsx:114 #: src/pages/settings/workspace/SettingsDomain.tsx:128 #: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 -#: src/pages/settings/data-model/SettingsObjects.tsx:152 -#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjects.tsx:157 +#: src/pages/settings/data-model/SettingsNewObject.tsx:70 +#: src/pages/settings/crm-migration/SettingsCRMMigration.tsx:25 msgid "Workspace" msgstr "" +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:46 msgid "You will be charged immediately for the full year." msgstr "" @@ -321,6 +585,6 @@ msgstr "" msgid "Your name as it will be displayed" msgstr "" -#: src/pages/settings/SettingsBilling.tsx:170 +#: src/pages/settings/SettingsBilling.tsx:171 msgid "Your workspace will be disabled" msgstr "" diff --git a/packages/twenty-front/src/modules/settings/profile/components/DeleteWorkspace.tsx b/packages/twenty-front/src/modules/settings/profile/components/DeleteWorkspace.tsx index f94f1fed4..363600596 100644 --- a/packages/twenty-front/src/modules/settings/profile/components/DeleteWorkspace.tsx +++ b/packages/twenty-front/src/modules/settings/profile/components/DeleteWorkspace.tsx @@ -1,3 +1,4 @@ +import { Trans, useLingui } from '@lingui/react/macro'; import { useState } from 'react'; import { useRecoilValue } from 'recoil'; import { Button, H2Title, IconTrash } from 'twenty-ui'; @@ -6,6 +7,7 @@ import { useAuth } from '@/auth/hooks/useAuth'; import { currentUserState } from '@/auth/states/currentUserState'; import { ConfirmationModal } from '@/ui/layout/modal/components/ConfirmationModal'; import { useDeleteCurrentWorkspaceMutation } from '~/generated/graphql'; + export const DeleteWorkspace = () => { const [isDeleteWorkSpaceModalOpen, setIsDeleteWorkSpaceModalOpen] = useState(false); @@ -13,6 +15,7 @@ export const DeleteWorkspace = () => { const [deleteCurrentWorkspace] = useDeleteCurrentWorkspaceMutation(); const currentUser = useRecoilValue(currentUserState); const userEmail = currentUser?.email; + const { t } = useLingui(); const { signOut } = useAuth(); @@ -23,11 +26,14 @@ export const DeleteWorkspace = () => { return ( <> - +