diff --git a/.github/workflows/i18n-force-pull.yml b/.github/workflows/i18n-force-pull.yml new file mode 100644 index 000000000..469b29595 --- /dev/null +++ b/.github/workflows/i18n-force-pull.yml @@ -0,0 +1,50 @@ +# This is similar to the "Pull Translations" workflow, but without the conditional check to allow us to +# forcefully pull down translations from Crowdin and create a PR regardless if all the translations are fulfilled. +# +# Intended to be used when we manually update translations in Crowdin UI and want to pull those down when +# they already exist. + +name: 'Force pull translations' + +on: + workflow_dispatch: + workflow_call: + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + pull_translations: + name: Force pull translations + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - uses: ./.github/actions/node-install + + - name: Pull translations from Crowdin + uses: crowdin/github-action@v2 + with: + upload_sources: false + upload_translations: false + download_translations: true + export_only_approved: false + localization_branch_name: chore/translations + commit_message: 'chore: add translations' + pull_request_title: 'chore: add translations' + + env: + # A classic GitHub Personal Access Token with the 'repo' scope selected (the user should have write access to the repository). + GITHUB_TOKEN: ${{ github.token }} + + # A numeric ID, found at https://crowdin.com/project//tools/api + CROWDIN_PROJECT_ID: 1 + + # Visit https://crowdin.com/settings#api-key to create this token + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/i18n-pull.yaml b/.github/workflows/i18n-pull.yaml new file mode 100644 index 000000000..8bf75820e --- /dev/null +++ b/.github/workflows/i18n-pull.yaml @@ -0,0 +1,57 @@ +# Pull down translations from Crowdin every two hours or when triggered manually. + +name: 'Pull translations' + +on: + schedule: + - cron: '0 */2 * * *' # Every two hours. + workflow_dispatch: + workflow_call: + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + pull_translations: + name: Pull translations + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - uses: ./.github/actions/node-install + + - name: Compile translations + id: compile_translations + run: | + npx nx run twenty-server:lingui:compile + npx nx run twenty-emails:lingui:compile + npx nx run twenty-front:lingui:compile + continue-on-error: true + + - name: Pull translations from Crowdin + if: steps.compile_translations.outcome == 'failure' + uses: crowdin/github-action@v2 + with: + upload_sources: false + upload_translations: false + download_translations: true + export_only_approved: false + localization_branch_name: chore/translations + commit_message: 'chore: add translations' + pull_request_title: 'chore: add translations' + + env: + # A classic GitHub Personal Access Token with the 'repo' scope selected (the user should have write access to the repository). + GITHUB_TOKEN: ${{ github.token }} + + # A numeric ID, found at https://crowdin.com/project//tools/api + CROWDIN_PROJECT_ID: 1 + + # Visit https://crowdin.com/settings#api-key to create this token + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/i18n-upload.yml b/.github/workflows/i18n-upload.yml new file mode 100644 index 000000000..9f3fbbb32 --- /dev/null +++ b/.github/workflows/i18n-upload.yml @@ -0,0 +1,61 @@ +name: 'Extract and upload translations' + +on: + workflow_dispatch: + workflow_call: + push: + branches: ['main'] + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + extract_translations: + name: Extract and upload translations + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + token: ${{ github.token }} + + - uses: ./.github/actions/node-install + + - name: Extract translations + run: | + npx nx run twenty-server:lingui:extract + npx nx run twenty-emails:lingui:extract + npx nx run twenty-front:lingui:extract + + - name: Check and commit any files created + run: | + git config --global user.name 'github-actions' + git config --global user.email 'github-actions@twenty.com' + git add . + git diff --staged --quiet --exit-code || (git commit -m "chore: extract translations" && git push) + + - name: Compile translations + id: compile_translations + run: | + npx nx run twenty-server:lingui:compile + npx nx run twenty-emails:lingui:compile + npx nx run twenty-front:lingui:compile + continue-on-error: true + + - name: Upload missing translations + if: ${{ steps.compile_translations.outcome == 'failure' }} + uses: crowdin/github-action@v2 + with: + upload_sources: true + upload_translations: true + download_translations: false + localization_branch_name: chore/translations + env: + # A numeric ID, found at https://crowdin.com/project//tools/api + CROWDIN_PROJECT_ID: 1 + + # Visit https://crowdin.com/settings#api-key to create this token + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 03c7ae81b..138eea1d9 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,5 @@ dump.rdb /devenv.nix /flake.lock /flake.nix + +.crowdin.yml \ No newline at end of file diff --git a/README.md b/README.md index f2c9bb91a..5ada3a710 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ Below are a few features we have implemented to date: - [NestJS](https://nestjs.com/), with [BullMQ](https://bullmq.io/), [PostgreSQL](https://www.postgresql.org/), [Redis](https://redis.io/) - [React](https://reactjs.org/), with [Recoil](https://recoiljs.org/) and [Emotion](https://emotion.sh/) - [Greptile](https://greptile.com) for code reviews. -- [Lingui](https://lingui.dev/) and [TranslationIO](https://translation.io/) for translations. +- [Lingui](https://lingui.dev/) and [Crowdin](https://crowdin.com/) for translations. # Join the Community diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 000000000..47e97dc8f --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,31 @@ +# +# Basic Crowdin CLI configuration +# See https://crowdin.github.io/crowdin-cli/configuration for more information +# See https://support.crowdin.com/developer/configuration-file/ for all available options +# + +# +# Defines whether to preserve the original directory structure in the Crowdin project +# Recommended to set to true +# +"preserve_hierarchy": true + +# +# Files configuration. +# See https://support.crowdin.com/developer/configuration-file/ for all available options +# +files: [ + { + # + # Source files filter + # e.g. "/resources/en/*.json" + # + "source": "**/en.po", + + # + # Translation files filter + # e.g. "/resources/%two_letters_code%/%original_file_name%" + # + "translation": "%original_path%/%locale%.po", + } +] \ No newline at end of file diff --git a/packages/twenty-emails/.swcrc b/packages/twenty-emails/.swcrc index e5fdfff93..7027d9137 100644 --- a/packages/twenty-emails/.swcrc +++ b/packages/twenty-emails/.swcrc @@ -9,8 +9,9 @@ "runtimeModules": { "i18n": ["@lingui/core", "i18n"], "trans": ["@lingui/react", "Trans"] - } - } + }, + "stripNonEssentialFields": false + } ] ] } diff --git a/packages/twenty-emails/lingui.config.js b/packages/twenty-emails/lingui.config.js index 4350dc5e0..ec41a75d7 100644 --- a/packages/twenty-emails/lingui.config.js +++ b/packages/twenty-emails/lingui.config.js @@ -19,12 +19,4 @@ export default defineConfig({ ], catalogsMergePath: '/src/locales/generated/{locale}', compileNamespace: 'ts', - ...(process.env.TRANSLATION_IO_API_KEY_EMAILS - ? { - service: { - name: 'TranslationIO', - apiKey: process.env.TRANSLATION_IO_API_KEY_EMAILS, - }, - } - : {}), }); diff --git a/packages/twenty-emails/src/components/BaseEmail.tsx b/packages/twenty-emails/src/components/BaseEmail.tsx index c1408ec41..abac1825d 100644 --- a/packages/twenty-emails/src/components/BaseEmail.tsx +++ b/packages/twenty-emails/src/components/BaseEmail.tsx @@ -1,4 +1,4 @@ -import { i18n } from '@lingui/core'; +import { i18n, Messages } from '@lingui/core'; import { I18nProvider } from '@lingui/react'; import { Container, Html } from '@react-email/components'; import { PropsWithChildren } from 'react'; @@ -6,36 +6,43 @@ import { PropsWithChildren } from 'react'; import { BaseHead } from 'src/components/BaseHead'; import { Logo } from 'src/components/Logo'; import { APP_LOCALES } from 'twenty-shared'; -import { messages as deMessages } from '../locales/generated/de'; +import { messages as deMessages } from '../locales/generated/de-DE'; import { messages as enMessages } from '../locales/generated/en'; -import { messages as esMessages } from '../locales/generated/es'; -import { messages as frMessages } from '../locales/generated/fr'; -import { messages as itMessages } from '../locales/generated/it'; -import { messages as jaMessages } from '../locales/generated/ja'; -import { messages as koMessages } from '../locales/generated/ko'; +import { messages as esMessages } from '../locales/generated/es-ES'; +import { messages as frMessages } from '../locales/generated/fr-FR'; +import { messages as itMessages } from '../locales/generated/it-IT'; +import { messages as jaMessages } from '../locales/generated/ja-JP'; +import { messages as koMessages } from '../locales/generated/ko-KR'; import { messages as pseudoEnMessages } from '../locales/generated/pseudo-en'; import { messages as ptBRMessages } from '../locales/generated/pt-BR'; import { messages as ptPTMessages } from '../locales/generated/pt-PT'; -import { messages as zhHansMessages } from '../locales/generated/zh-Hans'; -import { messages as zhHantMessages } from '../locales/generated/zh-Hant'; +import { messages as zhHansMessages } from '../locales/generated/zh-CN'; +import { messages as zhHantMessages } from '../locales/generated/zh-TW'; type BaseEmailProps = PropsWithChildren<{ width?: number; locale: keyof typeof APP_LOCALES; }>; +const messages: Record = { + en: enMessages, + 'pseudo-en': pseudoEnMessages, + 'fr-FR': frMessages, + 'ko-KR': koMessages, + 'de-DE': deMessages, + 'it-IT': itMessages, + 'es-ES': esMessages, + 'ja-JP': jaMessages, + 'pt-PT': ptPTMessages, + 'pt-BR': ptBRMessages, + 'zh-CN': zhHansMessages, + 'zh-TW': zhHantMessages, +}; -i18n.load('en', enMessages); -i18n.load('fr', frMessages); -i18n.load('pseudo-en', pseudoEnMessages); -i18n.load('ko', koMessages); -i18n.load('de', deMessages); -i18n.load('it', itMessages); -i18n.load('es', esMessages); -i18n.load('ja', jaMessages); -i18n.load('pt-PT', ptPTMessages); -i18n.load('pt-BR', ptBRMessages); -i18n.load('zh-Hans', zhHansMessages); -i18n.load('zh-Hant', zhHantMessages); +(Object.entries(messages) as [keyof typeof APP_LOCALES, any][]).forEach( + ([locale, message]) => { + i18n.load(locale, message); + }, +); i18n.activate('en'); diff --git a/packages/twenty-emails/src/locales/af-ZA.po b/packages/twenty-emails/src/locales/af-ZA.po new file mode 100644 index 000000000..2f5010811 --- /dev/null +++ b/packages/twenty-emails/src/locales/af-ZA.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: af\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Afrikaans\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: af\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/ar-SA.po b/packages/twenty-emails/src/locales/ar-SA.po new file mode 100644 index 000000000..0b30ad187 --- /dev/null +++ b/packages/twenty-emails/src/locales/ar-SA.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ar\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Arabic\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ar\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/ca-ES.po b/packages/twenty-emails/src/locales/ca-ES.po new file mode 100644 index 000000000..e77abde8c --- /dev/null +++ b/packages/twenty-emails/src/locales/ca-ES.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ca\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Catalan\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ca\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/cs-CZ.po b/packages/twenty-emails/src/locales/cs-CZ.po new file mode 100644 index 000000000..c52c203a4 --- /dev/null +++ b/packages/twenty-emails/src/locales/cs-CZ.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: cs\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Czech\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: cs\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/da-DK.po b/packages/twenty-emails/src/locales/da-DK.po new file mode 100644 index 000000000..1416b91e9 --- /dev/null +++ b/packages/twenty-emails/src/locales/da-DK.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: da\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Danish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: da\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/de.po b/packages/twenty-emails/src/locales/de-DE.po similarity index 75% rename from packages/twenty-emails/src/locales/de.po rename to packages/twenty-emails/src/locales/de-DE.po index f7c073c5b..9afe1334c 100644 --- a/packages/twenty-emails/src/locales/de.po +++ b/packages/twenty-emails/src/locales/de-DE.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: de\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: German\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: de\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "Bestätigen Sie Ihre E-Mail-Adresse" msgid "Connect to Twenty" msgstr "Mit Twenty verbinden" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "Sehr geehrte/r {userName}" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "hat Sie eingeladen, einem Workspace namens " + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "Hallo" @@ -75,10 +94,18 @@ msgstr "Der Workspace wird in {remainingDays} {dayOrDays} deaktiviert, und alle msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "Dies ist eine Bestätigung, dass das Passwort für Ihr Konto ({email}) am {formattedDate} erfolgreich geändert wurde." +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "Dieser Link ist nur für die nächsten {duration} gültig. Wenn der Link nicht funktioniert, können Sie den Anmeldebestätigungslink direkt verwenden:" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "Aktualisieren Sie Ihr Abonnement" @@ -91,6 +118,3 @@ msgstr "E-Mail verifizieren" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "Ihr Workspace <0>{workspaceDisplayName} wurde gelöscht, da Ihr Abonnement vor {inactiveDaysBeforeDelete} Tagen abgelaufen ist." -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "hat Sie eingeladen, einem Workspace namens " diff --git a/packages/twenty-emails/src/locales/el-GR.po b/packages/twenty-emails/src/locales/el-GR.po new file mode 100644 index 000000000..59e38790f --- /dev/null +++ b/packages/twenty-emails/src/locales/el-GR.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: el\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Greek\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: el\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/es.po b/packages/twenty-emails/src/locales/es-ES.po similarity index 75% rename from packages/twenty-emails/src/locales/es.po rename to packages/twenty-emails/src/locales/es-ES.po index 98833a3e3..9fd8b0b6f 100644 --- a/packages/twenty-emails/src/locales/es.po +++ b/packages/twenty-emails/src/locales/es-ES.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: es\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Spanish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: es\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "Confirma tu dirección de correo electrónico" msgid "Connect to Twenty" msgstr "Conéctate a Twenty" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "Estimado/a {userName}" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "te ha invitado a unirte a un espacio de trabajo llamado " + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "Hola" @@ -75,10 +94,18 @@ msgstr "El espacio de trabajo se desactivará en {remainingDays} {dayOrDays} y s msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "Esta es una confirmación de que la contraseña de tu cuenta ({email}) se cambió correctamente el {formattedDate}." +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "Este enlace solo es válido por los próximos {duration}. Si el enlace no funciona, puedes usar directamente el enlace de verificación de inicio de sesión:" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "Actualiza tu suscripción" @@ -91,6 +118,3 @@ msgstr "Verificar correo electrónico" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "Tu espacio de trabajo <0>{workspaceDisplayName} ha sido eliminado porque tu suscripción caducó hace {inactiveDaysBeforeDelete} días." -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "te ha invitado a unirte a un espacio de trabajo llamado " diff --git a/packages/twenty-emails/src/locales/fi-FI.po b/packages/twenty-emails/src/locales/fi-FI.po new file mode 100644 index 000000000..29a42105b --- /dev/null +++ b/packages/twenty-emails/src/locales/fi-FI.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Finnish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: fi\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/fr.po b/packages/twenty-emails/src/locales/fr-FR.po similarity index 76% rename from packages/twenty-emails/src/locales/fr.po rename to packages/twenty-emails/src/locales/fr-FR.po index 6757cfe19..861a60ed0 100644 --- a/packages/twenty-emails/src/locales/fr.po +++ b/packages/twenty-emails/src/locales/fr-FR.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: fr\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: French\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: fr\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "Confirmez votre adresse e-mail" msgid "Connect to Twenty" msgstr "Connectez-vous à Twenty" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "Cher {userName}" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "vous a invité à rejoindre un espace de travail appelé " + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "Bonjour" @@ -75,10 +94,18 @@ msgstr "L'espace de travail sera désactivé dans {remainingDays} {dayOrDays} et msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "Ceci est une confirmation que le mot de passe de votre compte ({email}) a été modifié avec succès le {formattedDate}." +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "Ce lien n'est valable que pour les {duration} suivants. Si le lien ne fonctionne pas, vous pouvez utiliser directement le lien de vérification de connexion :" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "Mettez à jour votre abonnement" @@ -91,6 +118,3 @@ msgstr "Vérifiez l'e-mail" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "Votre espace de travail <0>{workspaceDisplayName} a été supprimé car votre abonnement a expiré il y a {inactiveDaysBeforeDelete} jours." -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "vous a invité à rejoindre un espace de travail appelé " diff --git a/packages/twenty-emails/src/locales/generated/de.ts b/packages/twenty-emails/src/locales/generated/de-DE.ts similarity index 100% rename from packages/twenty-emails/src/locales/generated/de.ts rename to packages/twenty-emails/src/locales/generated/de-DE.ts diff --git a/packages/twenty-emails/src/locales/generated/es.ts b/packages/twenty-emails/src/locales/generated/es-ES.ts similarity index 100% rename from packages/twenty-emails/src/locales/generated/es.ts rename to packages/twenty-emails/src/locales/generated/es-ES.ts diff --git a/packages/twenty-emails/src/locales/generated/fr.ts b/packages/twenty-emails/src/locales/generated/fr-FR.ts similarity index 100% rename from packages/twenty-emails/src/locales/generated/fr.ts rename to packages/twenty-emails/src/locales/generated/fr-FR.ts diff --git a/packages/twenty-emails/src/locales/generated/it.ts b/packages/twenty-emails/src/locales/generated/it-IT.ts similarity index 100% rename from packages/twenty-emails/src/locales/generated/it.ts rename to packages/twenty-emails/src/locales/generated/it-IT.ts diff --git a/packages/twenty-emails/src/locales/generated/ja.ts b/packages/twenty-emails/src/locales/generated/ja-JP.ts similarity index 100% rename from packages/twenty-emails/src/locales/generated/ja.ts rename to packages/twenty-emails/src/locales/generated/ja-JP.ts diff --git a/packages/twenty-emails/src/locales/generated/ko.ts b/packages/twenty-emails/src/locales/generated/ko-KR.ts similarity index 100% rename from packages/twenty-emails/src/locales/generated/ko.ts rename to packages/twenty-emails/src/locales/generated/ko-KR.ts diff --git a/packages/twenty-emails/src/locales/generated/zh-Hans.ts b/packages/twenty-emails/src/locales/generated/zh-CN.ts similarity index 100% rename from packages/twenty-emails/src/locales/generated/zh-Hans.ts rename to packages/twenty-emails/src/locales/generated/zh-CN.ts diff --git a/packages/twenty-emails/src/locales/generated/zh-Hant.ts b/packages/twenty-emails/src/locales/generated/zh-TW.ts similarity index 100% rename from packages/twenty-emails/src/locales/generated/zh-Hant.ts rename to packages/twenty-emails/src/locales/generated/zh-TW.ts diff --git a/packages/twenty-emails/src/locales/he-IL.po b/packages/twenty-emails/src/locales/he-IL.po new file mode 100644 index 000000000..204907c21 --- /dev/null +++ b/packages/twenty-emails/src/locales/he-IL.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: he\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Hebrew\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: he\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/hu-HU.po b/packages/twenty-emails/src/locales/hu-HU.po new file mode 100644 index 000000000..461ff67c0 --- /dev/null +++ b/packages/twenty-emails/src/locales/hu-HU.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: hu\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Hungarian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: hu\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/it.po b/packages/twenty-emails/src/locales/it-IT.po similarity index 75% rename from packages/twenty-emails/src/locales/it.po rename to packages/twenty-emails/src/locales/it-IT.po index e23b67a2d..b90179c05 100644 --- a/packages/twenty-emails/src/locales/it.po +++ b/packages/twenty-emails/src/locales/it-IT.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: it\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Italian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: it\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "Conferma il tuo indirizzo e-mail" msgid "Connect to Twenty" msgstr "Accedi a Twenty" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "Gentile {userName}" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "ti ha invitato a unirti a uno spazio di lavoro chiamato " + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "Salve" @@ -75,10 +94,18 @@ msgstr "L'area di lavoro sarà disattivata in {remainingDays} {dayOrDays} e tutt msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "Questa è la conferma che la password del tuo account ({email}) è stata modificata con successo in data {formattedDate}." +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "Questo link è valido solo per i prossimi {duration}. Se il link non funziona, puoi utilizzare direttamente il link di verifica del login:" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "Aggiorna il tuo abbonamento" @@ -91,6 +118,3 @@ msgstr "Verifica e-mail" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "Il tuo spazio di lavoro <0>{workspaceDisplayName} è stato cancellato poiché il tuo abbonamento è scaduto {inactiveDaysBeforeDelete} giorni fa." -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "ti ha invitato a unirti a uno spazio di lavoro chiamato " diff --git a/packages/twenty-emails/src/locales/ja.po b/packages/twenty-emails/src/locales/ja-JP.po similarity index 76% rename from packages/twenty-emails/src/locales/ja.po rename to packages/twenty-emails/src/locales/ja-JP.po index 3f54d28c7..387ff20a1 100644 --- a/packages/twenty-emails/src/locales/ja.po +++ b/packages/twenty-emails/src/locales/ja-JP.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: ja\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Japanese\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ja\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "メールアドレスを確認" msgid "Connect to Twenty" msgstr "Twentyに接続" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "{userName}様" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "というワークスペースに招待されました。" + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "こんにちは" @@ -75,10 +94,18 @@ msgstr "ワークスペースは{remainingDays} {dayOrDays}後に無効化され msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "アカウント({email})のパスワードが{formattedDate}に正常に変更されたことを確認しました。" +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "このリンクは{duration}のみ有効です。リンクが機能しない場合は、ログイン認証リンクを直接ご利用ください:" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "サブスクリプションを更新" @@ -91,6 +118,3 @@ msgstr "メールを確認" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "サブスクリプションが{inactiveDaysBeforeDelete}日前に期限切れとなったため、ワークスペース<0>{workspaceDisplayName}が削除されました。" -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "というワークスペースに招待されました。" diff --git a/packages/twenty-emails/src/locales/ko.po b/packages/twenty-emails/src/locales/ko-KR.po similarity index 76% rename from packages/twenty-emails/src/locales/ko.po rename to packages/twenty-emails/src/locales/ko-KR.po index 560fe4670..db3b48884 100644 --- a/packages/twenty-emails/src/locales/ko.po +++ b/packages/twenty-emails/src/locales/ko-KR.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: ko\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Korean\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ko\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "이메일 주소를 확인하세요" msgid "Connect to Twenty" msgstr "Twenty에 연결하세요" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "{userName}님께" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "라는 워크스페이스에 초대되었습니다 " + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "안녕하세요" @@ -75,10 +94,18 @@ msgstr "워크스페이스는 {remainingDays} {dayOrDays} 후에 비활성화되 msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "계정({email})의 비밀번호가 {formattedDate}에 성공적으로 변경되었음을 확인합니다." +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "이 링크는 다음 {duration} 동안만 유효합니다. 링크가 작동하지 않으면 로그인 인증 링크를 직접 사용할 수 있습니다:" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "구독을 업데이트하세요" @@ -91,6 +118,3 @@ msgstr "이메일 인증" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "구독이 {inactiveDaysBeforeDelete}일 전에 만료되어 워크스페이스 <0>{workspaceDisplayName}이(가) 삭제되었습니다." -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "라는 워크스페이스에 초대되었습니다 " diff --git a/packages/twenty-emails/src/locales/nl-NL.po b/packages/twenty-emails/src/locales/nl-NL.po new file mode 100644 index 000000000..18e00bc64 --- /dev/null +++ b/packages/twenty-emails/src/locales/nl-NL.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nl\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Dutch\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: nl\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/no-NO.po b/packages/twenty-emails/src/locales/no-NO.po new file mode 100644 index 000000000..8b8cb8091 --- /dev/null +++ b/packages/twenty-emails/src/locales/no-NO.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: no\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Norwegian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: no\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/pl-PL.po b/packages/twenty-emails/src/locales/pl-PL.po new file mode 100644 index 000000000..0216f48d4 --- /dev/null +++ b/packages/twenty-emails/src/locales/pl-PL.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: pl\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Polish\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: pl\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/pt-BR.po b/packages/twenty-emails/src/locales/pt-BR.po index a5ea87e1f..44ba9a149 100644 --- a/packages/twenty-emails/src/locales/pt-BR.po +++ b/packages/twenty-emails/src/locales/pt-BR.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: pt-BR\n" +"Language: pt\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Portuguese, Brazilian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: pt-BR\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "Confirme seu endereço de e-mail" msgid "Connect to Twenty" msgstr "Conecte-se ao Twenty" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "Caro {userName}" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "convidou você para participar de um workspace chamado " + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "Olá" @@ -75,10 +94,18 @@ msgstr "O workspace será desativado em {remainingDays} {dayOrDays}, e todos os msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "Esta é uma confirmação de que a senha da sua conta ({email}) foi alterada com sucesso em {formattedDate}." +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "Este link é válido apenas para os próximos {duration}. Se o link não funcionar, você pode usar o link de verificação de login diretamente:" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "Atualize sua assinatura" @@ -91,6 +118,3 @@ msgstr "Verificar e-mail" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "Seu workspace <0>{workspaceDisplayName} foi excluído porque sua assinatura expirou há {inactiveDaysBeforeDelete} dias." -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "convidou você para participar de um workspace chamado " diff --git a/packages/twenty-emails/src/locales/pt-PT.po b/packages/twenty-emails/src/locales/pt-PT.po index 14040699a..c655c6b6f 100644 --- a/packages/twenty-emails/src/locales/pt-PT.po +++ b/packages/twenty-emails/src/locales/pt-PT.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: pt-PT\n" +"Language: pt\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Portuguese\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: pt\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "Confirme o seu endereço de e-mail" msgid "Connect to Twenty" msgstr "Conecte-se ao Twenty" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "Caro {userName}" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "convidou-o a juntar-se a um workspace chamado " + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "Olá" @@ -75,10 +94,18 @@ msgstr "O workspace será desativado em {remainingDays} {dayOrDays} e todos os s msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "Esta é uma confirmação de que a palavra-passe da sua conta ({email}) foi alterada com sucesso em {formattedDate}." +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "Este link só é válido para os próximos {duration}. Se o link não funcionar, pode usar diretamente o link de verificação de login:" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "Atualize a sua subscrição" @@ -91,6 +118,3 @@ msgstr "Verifique o e-mail" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "O seu workspace <0>{workspaceDisplayName} foi eliminado porque a sua subscrição expirou há {inactiveDaysBeforeDelete} dias." -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "convidou-o a juntar-se a um workspace chamado " diff --git a/packages/twenty-emails/src/locales/ro-RO.po b/packages/twenty-emails/src/locales/ro-RO.po new file mode 100644 index 000000000..09234b381 --- /dev/null +++ b/packages/twenty-emails/src/locales/ro-RO.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ro\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Romanian\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ro\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/ru-RU.po b/packages/twenty-emails/src/locales/ru-RU.po new file mode 100644 index 000000000..df0b93147 --- /dev/null +++ b/packages/twenty-emails/src/locales/ru-RU.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ru\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Russian\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ru\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/sr-Cyrl.po b/packages/twenty-emails/src/locales/sr-Cyrl.po new file mode 100644 index 000000000..7a398d723 --- /dev/null +++ b/packages/twenty-emails/src/locales/sr-Cyrl.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: sr_Cyrl\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Serbian (Cyrillic)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: sr-Cyrl\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/sv-SE.po b/packages/twenty-emails/src/locales/sv-SE.po new file mode 100644 index 000000000..073d5790f --- /dev/null +++ b/packages/twenty-emails/src/locales/sv-SE.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: sv\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Swedish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: sv\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/tr-TR.po b/packages/twenty-emails/src/locales/tr-TR.po new file mode 100644 index 000000000..4246dcd83 --- /dev/null +++ b/packages/twenty-emails/src/locales/tr-TR.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: tr\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Turkish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: tr\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/uk-UA.po b/packages/twenty-emails/src/locales/uk-UA.po new file mode 100644 index 000000000..323993802 --- /dev/null +++ b/packages/twenty-emails/src/locales/uk-UA.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: uk\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Ukrainian\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: uk\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/vi-VN.po b/packages/twenty-emails/src/locales/vi-VN.po new file mode 100644 index 000000000..efe134719 --- /dev/null +++ b/packages/twenty-emails/src/locales/vi-VN.po @@ -0,0 +1,120 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: vi\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Vietnamese\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: vi\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" + +#: src/emails/send-invite-link.email.tsx:57 +msgid "Accept invite" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:33 +msgid "All data in this workspace has been permanently deleted." +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:22 +msgid "Confirm your email address" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:46 +msgid "Connect to Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Dear {userName}" +msgstr "" + +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "" + +#: src/emails/password-update-notify.email.tsx:24 +msgid "Hello" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:40 +msgid "If you did not initiate this change, please contact your workspace owner immediately." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:46 +msgid "If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}." +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:36 +msgid "If you wish to use Twenty again, you can create a new workspace." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:34 +msgid "It appears that your workspace <0>{workspaceDisplayName} has been suspended for {daysSinceInactive} days." +msgstr "" + +#: src/emails/send-invite-link.email.tsx:42 +msgid "Join your team on Twenty" +msgstr "" + +#: src/emails/password-update-notify.email.tsx:29 +msgid "Password updated" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:24 +msgid "Reset" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:23 +msgid "Reset your password 🗝" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:27 +msgid "Thanks for registering for an account on Twenty! Before we get started, we just need to confirm that this is you. Click above to verify your email address." +msgstr "" + +#: src/emails/warn-suspended-workspace.email.tsx:40 +msgid "The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:34 +msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." +msgstr "" + +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + +#: src/emails/password-reset-link.email.tsx:26 +msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" +msgstr "" + +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + +#: src/emails/warn-suspended-workspace.email.tsx:53 +msgid "Update your subscription" +msgstr "" + +#: src/emails/send-email-verification-link.email.tsx:23 +msgid "Verify Email" +msgstr "" + +#: src/emails/clean-suspended-workspace.email.tsx:27 +msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." +msgstr "" + diff --git a/packages/twenty-emails/src/locales/zh-Hans.po b/packages/twenty-emails/src/locales/zh-CN.po similarity index 73% rename from packages/twenty-emails/src/locales/zh-Hans.po rename to packages/twenty-emails/src/locales/zh-CN.po index 276e33aa6..ae3a298fe 100644 --- a/packages/twenty-emails/src/locales/zh-Hans.po +++ b/packages/twenty-emails/src/locales/zh-CN.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: zh-Hans\n" +"Language: zh\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Chinese Simplified\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "确认您的邮箱地址" msgid "Connect to Twenty" msgstr "连接 Twenty" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "亲爱的 {userName}" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "邀请您加入名为" + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "您好" @@ -75,10 +94,18 @@ msgstr "工作区将在 {remainingDays} {dayOrDays} 后停用,其所有数据 msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "确认您的账户({email})密码已在 {formattedDate} 成功更改。" +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "此链接仅在接下来的 {duration} 内有效。如果链接无效,您可以直接使用登录验证链接:" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "更新您的订阅" @@ -91,6 +118,3 @@ msgstr "验证邮箱" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "您的工作区 <0>{workspaceDisplayName} 已被删除,因为您的订阅已于 {inactiveDaysBeforeDelete} 天前过期。" -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "邀请您加入名为" diff --git a/packages/twenty-emails/src/locales/zh-Hant.po b/packages/twenty-emails/src/locales/zh-TW.po similarity index 74% rename from packages/twenty-emails/src/locales/zh-Hant.po rename to packages/twenty-emails/src/locales/zh-TW.po index d6934115a..1f7bd79ec 100644 --- a/packages/twenty-emails/src/locales/zh-Hant.po +++ b/packages/twenty-emails/src/locales/zh-TW.po @@ -1,11 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-02 20:44+0100\n" +"POT-Creation-Date: 2025-02-01 18:53+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: zh-Hant\n" +"Language: zh\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Chinese Traditional\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: zh-TW\n" +"X-Crowdin-File: /packages/twenty-emails/src/locales/en.po\n" +"X-Crowdin-File-ID: 27\n" #: src/emails/send-invite-link.email.tsx:57 msgid "Accept invite" @@ -23,10 +34,18 @@ msgstr "確認您的電子郵件地址" msgid "Connect to Twenty" msgstr "連接到 Twenty" +#: src/emails/password-update-notify.email.tsx:24 +#~ msgid "Dear" +#~ msgstr "Dear" + #: src/emails/password-update-notify.email.tsx:24 msgid "Dear {userName}" msgstr "親愛的 {userName}" +#: src/emails/send-invite-link.email.tsx:50 +msgid "has invited you to join a workspace called " +msgstr "已邀請您加入名為" + #: src/emails/password-update-notify.email.tsx:24 msgid "Hello" msgstr "您好" @@ -75,10 +94,18 @@ msgstr "工作區將在 {remainingDays} {dayOrDays} 後停用,所有數據將 msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}." msgstr "這是確認您的帳戶({email})的密碼已於 {formattedDate} 成功更改。" +#: src/emails/password-update-notify.email.tsx:36 +#~ msgid "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." +#~ msgstr "This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.<0/><1/>If you did not initiate this change, please contact your workspace owner immediately." + #: src/emails/password-reset-link.email.tsx:26 msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:" msgstr "此鏈接僅在接下來的 {duration} 內有效。如果鏈接無效,您可以直接使用登錄驗證鏈接:" +#: src/emails/password-reset-link.email.tsx:28 +#~ msgid "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" +#~ msgstr "This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:<0/>" + #: src/emails/warn-suspended-workspace.email.tsx:53 msgid "Update your subscription" msgstr "更新您的訂閱" @@ -91,6 +118,3 @@ msgstr "驗證電子郵件" msgid "Your workspace <0>{workspaceDisplayName} has been deleted as your subscription expired {inactiveDaysBeforeDelete} days ago." msgstr "由於您的訂閱已於 {inactiveDaysBeforeDelete} 天前過期,您的工作區 <0>{workspaceDisplayName} 已被刪除。" -#: src/emails/send-invite-link.email.tsx:50 -msgid "has invited you to join a workspace called " -msgstr "已邀請您加入名為" diff --git a/packages/twenty-front/lingui.config.ts b/packages/twenty-front/lingui.config.ts index f1d5857ab..6b31ed6ee 100644 --- a/packages/twenty-front/lingui.config.ts +++ b/packages/twenty-front/lingui.config.ts @@ -16,12 +16,4 @@ export default defineConfig({ ], catalogsMergePath: '/src/locales/generated/{locale}', compileNamespace: 'ts', - ...(process.env.TRANSLATION_IO_API_KEY - ? { - service: { - name: 'TranslationIO', - apiKey: process.env.TRANSLATION_IO_API_KEY, - }, - } - : {}), }); diff --git a/packages/twenty-front/src/generated/graphql.tsx b/packages/twenty-front/src/generated/graphql.tsx index 4cdcb02e4..d7620c7e4 100644 --- a/packages/twenty-front/src/generated/graphql.tsx +++ b/packages/twenty-front/src/generated/graphql.tsx @@ -998,6 +998,7 @@ export type MutationSendInvitationsArgs = { export type MutationSignUpArgs = { captchaToken?: InputMaybe; email: Scalars['String']; + locale?: InputMaybe; password: Scalars['String']; workspaceId?: InputMaybe; workspaceInviteHash?: InputMaybe; @@ -2163,6 +2164,7 @@ export type SignUpMutationVariables = Exact<{ workspacePersonalInviteToken?: InputMaybe; captchaToken?: InputMaybe; workspaceId?: InputMaybe; + locale?: InputMaybe; }>; @@ -3298,7 +3300,7 @@ export type ResendEmailVerificationTokenMutationHookResult = ReturnType; export type ResendEmailVerificationTokenMutationOptions = Apollo.BaseMutationOptions; export const SignUpDocument = gql` - mutation SignUp($email: String!, $password: String!, $workspaceInviteHash: String, $workspacePersonalInviteToken: String = null, $captchaToken: String, $workspaceId: String) { + mutation SignUp($email: String!, $password: String!, $workspaceInviteHash: String, $workspacePersonalInviteToken: String = null, $captchaToken: String, $workspaceId: String, $locale: String) { signUp( email: $email password: $password @@ -3306,6 +3308,7 @@ export const SignUpDocument = gql` workspacePersonalInviteToken: $workspacePersonalInviteToken captchaToken: $captchaToken workspaceId: $workspaceId + locale: $locale ) { loginToken { ...AuthTokenFragment @@ -3341,6 +3344,7 @@ export type SignUpMutationFn = Apollo.MutationFunction Please type in your email to confirm." +msgstr "" + +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/ar-SA.po b/packages/twenty-front/src/locales/ar-SA.po new file mode 100644 index 000000000..6240e167d --- /dev/null +++ b/packages/twenty-front/src/locales/ar-SA.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ar\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Arabic\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ar\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/ca-ES.po b/packages/twenty-front/src/locales/ca-ES.po new file mode 100644 index 000000000..00b82da92 --- /dev/null +++ b/packages/twenty-front/src/locales/ca-ES.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ca\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Catalan\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ca\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/cs-CZ.po b/packages/twenty-front/src/locales/cs-CZ.po new file mode 100644 index 000000000..4eb26e4d1 --- /dev/null +++ b/packages/twenty-front/src/locales/cs-CZ.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: cs\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Czech\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: cs\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/da-DK.po b/packages/twenty-front/src/locales/da-DK.po new file mode 100644 index 000000000..5dd91d9b2 --- /dev/null +++ b/packages/twenty-front/src/locales/da-DK.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: da\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Danish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: da\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/de.po b/packages/twenty-front/src/locales/de-DE.po similarity index 92% rename from packages/twenty-front/src/locales/de.po rename to packages/twenty-front/src/locales/de-DE.po index 712ff1c9c..44d7b4e0f 100644 --- a/packages/twenty-front/src/locales/de.po +++ b/packages/twenty-front/src/locales/de-DE.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: de\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: German\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: de\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{aggregateLabel} von {fieldLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "{apiKeyName} API-Schlüssel" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. Feld konfigurieren" msgid "24h ({hour24Label})" msgstr "24h ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API & Webhooks" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "API-Schlüssel" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "API-Name" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "API-Schlüssel" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "Konten" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "Aktivieren" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "Workflow aktivieren" @@ -91,14 +101,14 @@ msgstr "Hinzufügen" msgid "Add Field" msgstr "Feld hinzufügen" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "SSO-Identitätsanbieter hinzufügen" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "Objekt hinzufügen" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "SSO-Identitätsanbieter hinzufügen" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "Zur Blockliste hinzufügen" @@ -109,10 +119,10 @@ msgstr "Zur Blockliste hinzufügen" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "Zu Favoriten hinzufügen" @@ -133,7 +143,7 @@ msgstr "Alle" msgid "All ({relationRecordsCount})" msgstr "Alle ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "Alle Rollen" @@ -161,6 +171,28 @@ msgstr "Beim Aktualisieren des Passworts ist ein Fehler aufgetreten" msgid "An optional description" msgstr "Eine optionale Beschreibung" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "und" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API & Webhooks" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "API-Schlüssel" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "API-Schlüssel" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "API-Name" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "Erscheinungsbild" @@ -174,14 +206,22 @@ msgstr "Sind Sie sicher, dass Sie Ihr Abrechnungsintervall ändern möchten?" msgid "Ascending" msgstr "Aufsteigend" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "Rollen zuweisen, um die Zugriffsrechte der Mitglieder festzulegen" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "Zugewiesen an" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "Mindestens 8 Zeichen lang." @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "Kalender" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "Abbrechen" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "Plan kündigen" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "Jederzeit kündigen" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "Plan kündigen" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "Abonnement kündigen" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "Ändern zu {to}" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "Passwort ändern" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "Ändern zu {to}" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "Chinesisch - Vereinfacht" @@ -280,14 +320,14 @@ msgstr "Chinesisch - Traditionell" msgid "Choose an object" msgstr "Objekt auswählen" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "Wählen Sie Ihre Testphase" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "Anbieter auswählen" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "Wählen Sie Ihre Testphase" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "Schließen" @@ -312,11 +352,11 @@ msgstr "E-Mail- und Kalendereinstellungen konfigurieren." msgid "Connect a new account to your workspace" msgstr "Neues Konto mit Ihrem Arbeitsbereich verbinden" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "Mit Google verbinden" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "Mit Microsoft verbinden" @@ -329,12 +369,14 @@ msgid "Context" msgstr "Kontext" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "Weiter" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "Mit E-Mail fortfahren" @@ -379,22 +421,34 @@ msgstr "Nicht leere zählen" msgid "Count unique values" msgstr "Eindeutige Werte zählen" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "Erstellen Sie einen Workflow und kehren Sie hierher zurück, um die Versionen anzuzeigen" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "API-Schlüssel erstellen" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "Neuen Datensatz erstellen" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "Webhook erstellen" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "Erstellen Sie einen Workflow und kehren Sie hierher zurück, um die Versionen anzuzeigen" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "Neuen Datensatz erstellen" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "Datum und Uhrzeit" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "Deaktivieren" @@ -451,14 +505,14 @@ msgstr "Deaktivieren" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "\"Objektbezeichnungen und API-Namen synchronisieren\" deaktivieren, um einen benutzerdefinierten API-Namen festzulegen" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "Workflow deaktivieren" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "Dieses Feld deaktivieren" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "Workflow deaktivieren" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "Namen und Beschreibung des Objekts definieren" @@ -470,19 +524,15 @@ msgstr "Namen und Beschreibung des Objekts definieren" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "Löschen" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "API-Schlüssel löschen" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "Konto löschen" msgid "Delete account and all the associated data" msgstr "Konto und alle zugehörigen Daten löschen" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "API-Schlüssel löschen" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "Datensatz löschen" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "Datensätze löschen" @@ -514,6 +566,14 @@ msgstr "Diese Integration löschen" msgid "Delete webhook" msgstr "Webhook löschen" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -534,8 +594,10 @@ msgstr "Absteigend" msgid "Description" msgstr "Beschreibung" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "Zerstören" @@ -549,8 +611,8 @@ msgid "Developers" msgstr "Entwickler" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "Entwurf verwerfen" @@ -559,9 +621,9 @@ msgid "Display as relative date" msgstr "Als relatives Datum anzeigen" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "Domäne" @@ -589,6 +651,7 @@ msgstr "Zahlungsmethode bearbeiten, Rechnungen einsehen und mehr" #: src/pages/settings/SettingsWorkspace.tsx:52 msgid "Edit your subdomain name or set a custom domain." msgstr "Bearbeiten Sie den Namen Ihrer Subdomain oder legen Sie eine benutzerdefinierte Domäne fest." + #: src/pages/settings/SettingsWorkspaceMembers.tsx:180 #: src/pages/settings/SettingsWorkspaceMembers.tsx:256 #: src/pages/settings/SettingsProfile.tsx:42 @@ -609,6 +672,10 @@ msgstr "E-Mail oder Domain ist bereits in der Blockliste" msgid "Emails" msgstr "E-Mails" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "Mitarbeiter" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "Mitarbeiter" @@ -665,8 +732,8 @@ msgid "Exit Settings" msgstr "Einstellungen verlassen" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "Der ausgewählte Knoten sollte ein Erstellungs-Schrittknoten sein." +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -691,11 +758,11 @@ msgstr "Läuft ab in" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -703,24 +770,27 @@ msgstr "Exportieren" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "Datensätze exportieren" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "Als PDF exportieren" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "Ansicht exportieren" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "Favoriten" @@ -750,6 +820,10 @@ msgstr "Filter" msgid "Filters" msgstr "Filter" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "Passwort vergessen?" @@ -758,6 +832,14 @@ msgstr "Passwort vergessen?" msgid "French" msgstr "Französisch" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "von monatlich zu jährlich" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "von jährlich zu monatlich" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "Vollzugriff" @@ -768,7 +850,7 @@ msgstr "Funktionen" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "Allgemein" @@ -797,6 +879,10 @@ msgstr "Gewähren Sie dem Twenty-Support vorübergehend Zugang zu Ihrem Arbeitsb msgid "Hide" msgstr "Ausblenden" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -850,10 +936,6 @@ msgstr "Ungültige E-Mail oder Domain" msgid "Invalid form values" msgstr "Ungültige Formularwerte" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "Per Link einladen" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "Per E-Mail einladen" @@ -862,6 +944,10 @@ msgstr "Per E-Mail einladen" msgid "Invite by link" msgstr "Per Link einladen" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "Per Link einladen" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "Einladungslink an E-Mail-Adressen gesendet" @@ -890,6 +976,10 @@ msgstr "Labor" msgid "Language" msgstr "Sprache" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "Neueste" @@ -964,16 +1054,21 @@ msgstr "Nach rechts verschieben" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "Name" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -984,7 +1079,7 @@ msgid "Name of your workspace" msgstr "Name Ihres Arbeitsbereichs" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "Zum nächsten Datensatz navigieren" @@ -992,12 +1087,12 @@ msgstr "Zum nächsten Datensatz navigieren" msgid "Navigate to next version" msgstr "Zur nächsten Version navigieren" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "Zum nächsten Workflow navigieren" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "Zum vorherigen Datensatz navigieren" @@ -1005,7 +1100,7 @@ msgstr "Zum vorherigen Datensatz navigieren" msgid "Navigate to previous version" msgstr "Zur vorherigen Version navigieren" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "Zum vorherigen Workflow navigieren" @@ -1013,6 +1108,14 @@ msgstr "Zum vorherigen Workflow navigieren" msgid "New" msgstr "Neu" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "Neues Konto" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "Neuer Schlüssel" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "Neuer Schlüssel" @@ -1025,30 +1128,22 @@ msgstr "Neues Objekt" msgid "New Password" msgstr "Neues Passwort" +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "Neuer Datensatz" + #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "Neue Rolle" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "Neuer Webhook" -#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "Neues Konto" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "Neuer Schlüssel" - -#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 -msgid "New record" -msgstr "Neuer Datensatz" - -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "Kein verbundenes Konto" @@ -1087,6 +1182,10 @@ msgstr "Geöffnet" msgid "Options" msgstr "Optionen" +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "oder" + #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "Andere" @@ -1120,11 +1219,24 @@ msgstr "Prozent leer" msgid "Percent not empty" msgstr "Prozent nicht leer" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "Datensatz dauerhaft löschen" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1142,6 +1254,10 @@ msgstr "Bitte geben Sie \"{confirmationValue}\" ein, um zu bestätigen, dass Sie msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "Bitte geben Sie {confirmationText} ein, um zu bestätigen, dass Sie diesen Webhook löschen möchten." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "Portugiesisch - Brasilien" @@ -1150,6 +1266,14 @@ msgstr "Portugiesisch - Brasilien" msgid "Portuguese — Portugal" msgstr "Portugiesisch - Portugal" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1181,10 +1305,6 @@ msgstr "Erhalten Sie eine E-Mail mit einem Link zur Passwortaktualisierung" msgid "Record Selection" msgstr "Datensatz-Auswahl" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "Schlüssel regenerieren" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1194,6 +1314,10 @@ msgstr "API-Schlüssel neu generieren" msgid "Regenerate key" msgstr "Schlüssel neu generieren" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "Schlüssel regenerieren" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1208,10 +1332,10 @@ msgstr "Entfernen" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "Aus Favoriten entfernen" @@ -1228,8 +1352,8 @@ msgstr "Zurücksetzen auf" msgid "Results" msgstr "Ergebnisse" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "Rollen" @@ -1238,10 +1362,6 @@ msgstr "Rollen" msgid "Run a workflow and return here to view its executions" msgstr "Führen Sie einen Workflow aus und kehren Sie zurück, um die Ausführungen anzuzeigen" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "SSO" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1261,7 +1381,7 @@ msgid "Search an index..." msgstr "Index suchen..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "Felder suchen" @@ -1279,25 +1399,25 @@ msgstr "Datensätze suchen" msgid "Security" msgstr "Sicherheit" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "Aktive Version anzeigen" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "Läufe anzeigen" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "Versionen anzeigen" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "Versionsverlauf anzeigen" @@ -1321,7 +1441,7 @@ msgstr "Server-Admin-Bereich" msgid "Set email visibility, manage your blocklist and more." msgstr "E-Mail-Sichtbarkeit festlegen, Blockliste verwalten und mehr." -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "Domainnamen festlegen" @@ -1344,11 +1464,11 @@ msgstr "Teilen Sie diesen Link, um Benutzer in Ihren Arbeitsbereich einzuladen" msgid "Should changing a field's label also change the API name?" msgstr "Sollte die Änderung einer Feldbezeichnung auch den API-Namen ändern?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "Anmelden" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "Registrieren" @@ -1369,6 +1489,10 @@ msgstr "Sortieren" msgid "Spanish" msgstr "Spanisch" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "SSO" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "Subdomain" @@ -1398,10 +1522,6 @@ msgstr "Summe" msgid "Support" msgstr "Support" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "Abrechnung auf {to} umstellen" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "Wechseln von {from}" @@ -1410,28 +1530,32 @@ msgstr "Wechseln von {from}" msgid "Switch {to}" msgstr "Wechseln zu {to}" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "Abrechnung auf {to} umstellen" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "Feldbezeichnung und API-Name synchronisieren" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "Systemeinstellungen - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "Systemeinstellungen - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "Systemeinstellungen - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "Nutzungsbedingungen" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "Test" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "Test-Workflow" @@ -1449,6 +1573,10 @@ msgstr "Die mit Ihrem Konto verknüpfte E-Mail" msgid "The name and icon of this field" msgstr "Der Name und das Symbol dieses Felds" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "Die gesuchte Seite ist entweder nicht mehr vorhanden oder hat nie existiert. Lassen Sie uns Ihnen helfen, wieder auf den richtigen Weg zu kommen" @@ -1478,11 +1606,27 @@ msgstr "Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird dieser msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird Ihr gesamter Arbeitsbereich dauerhaft gelöscht. <0/> Bitte geben Sie zur Bestätigung Ihre E-Mail ein." +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "Zeitformat" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "zu monatlich" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "zu jährlich" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "Auslöser-Typ" @@ -1495,20 +1639,19 @@ msgstr "Der Auslöser-Typ sollte manuell sein - wenn keine Aufzeichnung(en) ausg msgid "Type" msgstr "Typ" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "Geben Sie irgendetwas ein" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "URL" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "Einzigartig" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "Unbegrenzte Kontakte" @@ -1517,6 +1660,11 @@ msgstr "Unbegrenzte Kontakte" msgid "Upload" msgstr "Hochladen" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "URL" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1574,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "Willkommen bei {workspaceName}" @@ -1594,9 +1746,9 @@ msgstr "Workflow kann nicht getestet werden" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1617,10 +1769,23 @@ msgstr "Arbeitsbereich" msgid "Workspace Deletion" msgstr "Arbeitsbereich löschen" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "Beschreibung schreiben" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "ja" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "Sie werden sofort für das gesamte Jahr belastet." @@ -1633,52 +1798,14 @@ msgstr "Ihr Guthaben wird zur Begleichung der monatlichen Rechnungen verwendet." msgid "Your name as it will be displayed" msgstr "Ihr Name, wie er angezeigt wird" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "Ihr Arbeitsbereich wird deaktiviert" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "und" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "Mitarbeiter" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "von monatlich zu jährlich" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "von jährlich zu monatlich" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "oder" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "zu monatlich" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "zu jährlich" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "ja" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{aggregateLabel} von {fieldLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "{apiKeyName} API-Schlüssel" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/locales/el-GR.po b/packages/twenty-front/src/locales/el-GR.po new file mode 100644 index 000000000..bbc0b49da --- /dev/null +++ b/packages/twenty-front/src/locales/el-GR.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: el\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Greek\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: el\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +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 81d21d145..863e659bc 100644 --- a/packages/twenty-front/src/locales/en.po +++ b/packages/twenty-front/src/locales/en.po @@ -42,6 +42,10 @@ msgstr "2. Configure field" msgid "24h ({hour24Label})" msgstr "24h ({hour24Label})" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "A shared environment where you will be able to manage your customer relations with your team." + #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" msgstr "Abort" @@ -67,11 +71,11 @@ msgstr "Accounts" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "Activate" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "Activate Workflow" @@ -110,10 +114,10 @@ msgstr "Add to blocklist" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "Add to favorites" @@ -134,7 +138,7 @@ msgstr "All" msgid "All ({relationRecordsCount})" msgstr "All ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "All roles" @@ -197,14 +201,22 @@ msgstr "Are you sure that you want to change your billing interval?" msgid "Ascending" msgstr "Ascending" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "Assign roles to specify each member's access permissions" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "Assigned members" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "Assigned to" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "Assignment" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "At least 8 characters long." @@ -263,7 +275,7 @@ msgid "Calendars" msgstr "Calendars" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" @@ -335,11 +347,11 @@ msgstr "Configure your emails and calendar settings." msgid "Connect a new account to your workspace" msgstr "Connect a new account to your workspace" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "Connect with Google" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "Connect with Microsoft" @@ -352,12 +364,14 @@ msgid "Context" msgstr "Context" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "Continue" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "Continue with Email" @@ -410,15 +424,27 @@ msgstr "Create a workflow and return here to view its versions" msgid "Create API key" msgstr "Create API key" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 msgid "Create new record" msgstr "Create new record" +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "Create profile" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "Create Role" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "Create Webhook" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "Create your workspace" + #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" msgstr "Custom objects" @@ -466,7 +492,7 @@ msgstr "Date and time" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "Deactivate" @@ -478,7 +504,7 @@ msgstr "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom msgid "Deactivate this field" msgstr "Deactivate this field" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 msgid "Deactivate Workflow" msgstr "Deactivate Workflow" @@ -493,10 +519,10 @@ msgstr "Define the name and description of your object" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" @@ -516,13 +542,11 @@ msgstr "Delete account and all the associated data" msgid "Delete API key" msgstr "Delete API key" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "Delete record" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "Delete records" @@ -537,6 +561,14 @@ msgstr "Delete this integration" msgid "Delete webhook" msgstr "Delete webhook" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "Delete workflow" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "Delete workflows" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -557,8 +589,10 @@ msgstr "Descending" msgid "Description" msgstr "Description" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "Destroy" @@ -572,8 +606,8 @@ msgid "Developers" msgstr "Developers" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "Discard Draft" @@ -582,9 +616,9 @@ msgid "Display as relative date" msgstr "Display as relative date" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "Domain" @@ -693,8 +727,8 @@ msgid "Exit Settings" msgstr "Exit Settings" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "Expected selected node to be a create step node." +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -719,11 +753,11 @@ msgstr "Expires in" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -731,24 +765,27 @@ msgstr "Export" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "Export records" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "Export to PDF" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "Export view" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "Export Workflows" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "Favorites" @@ -778,6 +815,10 @@ msgstr "Filter" msgid "Filters" msgstr "Filters" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "First Name" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "Forgot your password?" @@ -804,7 +845,7 @@ msgstr "Functions" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "General" @@ -833,6 +874,10 @@ msgstr "Grant Twenty support temporary access to your workspace so we can troubl msgid "Hide" msgstr "Hide" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "How you'll be identified on the app." + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -926,6 +971,10 @@ msgstr "Lab" msgid "Language" msgstr "Language" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "Last Name" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "Latest" @@ -1000,16 +1049,21 @@ msgstr "Move right" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "Name" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "Name can not be empty" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -1020,7 +1074,7 @@ msgid "Name of your workspace" msgstr "Name of your workspace" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "Navigate to next record" @@ -1028,12 +1082,12 @@ msgstr "Navigate to next record" msgid "Navigate to next version" msgstr "Navigate to next version" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "Navigate to next workflow" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "Navigate to previous record" @@ -1041,7 +1095,7 @@ msgstr "Navigate to previous record" msgid "Navigate to previous version" msgstr "Navigate to previous version" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "Navigate to previous workflow" @@ -1071,20 +1125,20 @@ msgstr "New Password" #: src/modules/ui/layout/page/components/PageAddButton.tsx:27 #: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 msgid "New record" msgstr "New record" #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "New Role" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "New Webhook" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "No connected account" @@ -1160,11 +1214,24 @@ msgstr "Percent empty" msgid "Percent not empty" msgstr "Percent not empty" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "Permanently destroy record" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "Permanently destroy records" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "Permanently destroy workflows" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "Permissions" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1260,10 +1327,10 @@ msgstr "Remove" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "Remove from favorites" @@ -1280,8 +1347,8 @@ msgstr "Reset to" msgid "Results" msgstr "Results" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "Roles" @@ -1309,7 +1376,7 @@ msgid "Search an index..." msgstr "Search an index..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "Search fields" @@ -1327,25 +1394,25 @@ msgstr "Search records" msgid "Security" msgstr "Security" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "See active version" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "See runs" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "See versions" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "See versions history" @@ -1369,7 +1436,7 @@ msgstr "Server Admin Panel" msgid "Set email visibility, manage your blocklist and more." msgstr "Set email visibility, manage your blocklist and more." -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "Set the name of your domain" @@ -1392,11 +1459,11 @@ msgstr "Share this link to invite users to join your workspace" msgid "Should changing a field's label also change the API name?" msgstr "Should changing a field's label also change the API name?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "Sign in" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "Sign up" @@ -1479,11 +1546,11 @@ msgid "Terms of Service" msgstr "Terms of Service" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "Test" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "Test Workflow" @@ -1501,6 +1568,10 @@ msgstr "The email associated to your account" msgid "The name and icon of this field" msgstr "The name and icon of this field" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +msgstr "The name of your organization" + #: 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" @@ -1530,6 +1601,14 @@ msgstr "This action cannot be undone. This will permanently delete this user and 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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "This Role has the following permissions." + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "This Role is assigned to these workspace member." + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "Time format" @@ -1542,7 +1621,7 @@ msgstr "to monthly" msgid "to yearly" msgstr "to yearly" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "Trigger Type" @@ -1555,7 +1634,7 @@ msgstr "Trigger type should be Manual - when no record(s) are selected" msgid "Type" msgstr "Type" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "Type anything" @@ -1564,6 +1643,10 @@ msgstr "Type anything" msgid "Unique" msgstr "Unique" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "Unknown error" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "Unlimited contacts" @@ -1658,9 +1741,9 @@ msgstr "Workflow cannot be tested" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1681,6 +1764,14 @@ msgstr "Workspace" msgid "Workspace Deletion" msgstr "Workspace Deletion" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "Workspace logo" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "Workspace name" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "Write a description" @@ -1702,9 +1793,13 @@ 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/auth/SignInUp.tsx:47 -#~ msgid "Your Workspace" -#~ msgstr "Your Workspace" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "Your name as it will be displayed on the app" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "Your Workspace" #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" diff --git a/packages/twenty-front/src/locales/es.po b/packages/twenty-front/src/locales/es-ES.po similarity index 92% rename from packages/twenty-front/src/locales/es.po rename to packages/twenty-front/src/locales/es-ES.po index ed661a536..5f6e9a75c 100644 --- a/packages/twenty-front/src/locales/es.po +++ b/packages/twenty-front/src/locales/es-ES.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: es\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Spanish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: es\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{aggregateLabel} de {fieldLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "Clave API {apiKeyName}" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. Configurar campo" msgid "24h ({hour24Label})" msgstr "24h ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API y Webhooks" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "Clave API" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "Nombre API" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "Claves API" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "Cuentas" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "Activar" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "Activar workflow" @@ -91,14 +101,14 @@ msgstr "Añadir" msgid "Add Field" msgstr "Añadir campo" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "Añadir proveedor de identidad SSO" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "Añadir objeto" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "Añadir proveedor de identidad SSO" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "Añadir a la lista de bloqueo" @@ -109,10 +119,10 @@ msgstr "Añadir a la lista de bloqueo" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "Añadir a favoritos" @@ -133,7 +143,7 @@ msgstr "Todos" msgid "All ({relationRecordsCount})" msgstr "Todos ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "Todas las funciones" @@ -161,6 +171,28 @@ msgstr "Se produjo un error al actualizar la contraseña" msgid "An optional description" msgstr "Descripción opcional" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "y" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API y Webhooks" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "Clave API" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "Claves API" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "Nombre API" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "Apariencia" @@ -174,14 +206,22 @@ msgstr "¿Está seguro de que desea cambiar el intervalo de facturación?" msgid "Ascending" msgstr "Ascendente" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "Asignar funciones para especificar los permisos de acceso de cada miembro" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "Asignado a" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "Al menos 8 caracteres." @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "Calendarios" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "Cancelar" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "Cancelar plan" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "Cancelar en cualquier momento" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "Cancelar plan" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "Cancelar su suscripción" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "Cambiar a {to}" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "Cambiar contraseña" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "Cambiar a {to}" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "Chino simplificado" @@ -280,14 +320,14 @@ msgstr "Chino tradicional" msgid "Choose an object" msgstr "Elija un objeto" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "Elija su prueba" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "Elija su proveedor" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "Elija su prueba" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "Cerrar" @@ -312,11 +352,11 @@ msgstr "Configura tus correos electrónicos y calendario." msgid "Connect a new account to your workspace" msgstr "Conectar una nueva cuenta a su espacio de trabajo" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "Conectar con Google" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "Conectar con Microsoft" @@ -329,12 +369,14 @@ msgid "Context" msgstr "Contexto" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "Continuar" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "Continuar con el correo electrónico" @@ -379,22 +421,34 @@ msgstr "Contar no vacíos" msgid "Count unique values" msgstr "Contar valores únicos" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "Cree un workflow y vuelva aquí para ver sus versiones" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "Crear clave API" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "Crear nuevo registro" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "Crear Webhook" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "Cree un workflow y vuelva aquí para ver sus versiones" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "Crear nuevo registro" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "Fecha y hora" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "Desactivar" @@ -451,14 +505,14 @@ msgstr "Desactivar" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "Desactive \"Sincronizar etiquetas de objetos y nombres de API\" para establecer un nombre de API personalizado" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "Desactivar workflow" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "Desactivar este campo" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "Desactivar workflow" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "Defina el nombre y la descripción de su objeto" @@ -470,19 +524,15 @@ msgstr "Defina el nombre y la descripción de su objeto" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "Eliminar" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "Eliminar clave API" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "Eliminar cuenta" msgid "Delete account and all the associated data" msgstr "Eliminar la cuenta y todos los datos asociados" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "Eliminar clave API" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "Eliminar registro" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "Eliminar registros" @@ -514,6 +566,14 @@ msgstr "Eliminar esta integración" msgid "Delete webhook" msgstr "Eliminar webhook" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -534,8 +594,10 @@ msgstr "Descendente" msgid "Description" msgstr "Descripción" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "Destruir" @@ -549,8 +611,8 @@ msgid "Developers" msgstr "Desarrolladores" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "Descartar borrador" @@ -559,9 +621,9 @@ msgid "Display as relative date" msgstr "Mostrar como fecha relativa" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "Dominio" @@ -610,6 +672,10 @@ msgstr "El correo electrónico o el dominio ya están en la lista de bloqueo" msgid "Emails" msgstr "Correos electrónicos" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "empleados" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "Empleados" @@ -628,6 +694,7 @@ msgstr "URL del endpoint" #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 msgid "English" msgstr "Inglés" + #: src/pages/onboarding/ChooseYourPlan.tsx:157 msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" msgstr "Disfrute de {withCreditCardTrialPeriodDuration} días de prueba gratis" @@ -665,8 +732,8 @@ msgid "Exit Settings" msgstr "Salir de Configuración" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "Se espera que el nodo seleccionado sea un nodo de paso de creación." +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -691,11 +758,11 @@ msgstr "Expira en" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -703,24 +770,27 @@ msgstr "Exportar" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "Exportar registros" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "Exportar a PDF" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "Exportar vista" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "Favoritos" @@ -750,6 +820,10 @@ msgstr "Filtro" msgid "Filters" msgstr "Filtros" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" @@ -758,6 +832,14 @@ msgstr "¿Olvidó su contraseña?" msgid "French" msgstr "Francés" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "de mensual a anual" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "de anual a mensual" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "Acceso total" @@ -768,7 +850,7 @@ msgstr "Funciones" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "General" @@ -797,6 +879,10 @@ msgstr "Conceda al soporte de Twenty acceso temporal a su espacio de trabajo par msgid "Hide" msgstr "Ocultar" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -850,10 +936,6 @@ msgstr "Correo electrónico o dominio no válido" msgid "Invalid form values" msgstr "Valores de formulario no válidos" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "Invitar por enlace" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "Invitar por correo electrónico" @@ -862,6 +944,10 @@ msgstr "Invitar por correo electrónico" msgid "Invite by link" msgstr "Invitar por enlace" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "Invitar por enlace" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "Enlace de invitación enviado a las direcciones de correo electrónico" @@ -890,6 +976,10 @@ msgstr "Laboratorio" msgid "Language" msgstr "Idioma" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "Último" @@ -964,16 +1054,21 @@ msgstr "Mover a la derecha" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "Nombre" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -984,7 +1079,7 @@ msgid "Name of your workspace" msgstr "Nombre de su espacio de trabajo" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "Navegar al siguiente registro" @@ -992,12 +1087,12 @@ msgstr "Navegar al siguiente registro" msgid "Navigate to next version" msgstr "Navegar a la siguiente versión" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "Navegar al siguiente flujo de trabajo" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "Navegar al registro anterior" @@ -1005,7 +1100,7 @@ msgstr "Navegar al registro anterior" msgid "Navigate to previous version" msgstr "Navegar a la versión anterior" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "Navegar al flujo de trabajo anterior" @@ -1013,6 +1108,14 @@ msgstr "Navegar al flujo de trabajo anterior" msgid "New" msgstr "Nuevo" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "Nueva cuenta" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "Nueva clave" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "Nueva clave" @@ -1025,30 +1128,22 @@ msgstr "Nuevo objeto" msgid "New Password" msgstr "Nueva contraseña" +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "Nuevo registro" + #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "Nuevo rol" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "Nuevo Webhook" -#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "Nueva cuenta" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "Nueva clave" - -#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 -msgid "New record" -msgstr "Nuevo registro" - -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "No hay cuenta conectada" @@ -1087,6 +1182,10 @@ msgstr "Abierto" msgid "Options" msgstr "Opciones" +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "o" + #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "Otros" @@ -1120,11 +1219,24 @@ msgstr "Porcentaje vacío" msgid "Percent not empty" msgstr "Porcentaje no vacío" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "Destruir registro permanentemente" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1142,6 +1254,10 @@ msgstr "Escriba \"{confirmationValue}\" para confirmar que desea eliminar esta c msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "Por favor, escriba {confirmationText} para confirmar que desea eliminar este webhook." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "Portugués - Brasil" @@ -1150,6 +1266,14 @@ msgstr "Portugués - Brasil" msgid "Portuguese — Portugal" msgstr "Portugués - Portugal" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1181,10 +1305,6 @@ msgstr "Recibir un correo electrónico con un enlace para actualizar la contrase msgid "Record Selection" msgstr "Selección de registros" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "Regenerar clave" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1194,6 +1314,10 @@ msgstr "Regenerar una clave API" msgid "Regenerate key" msgstr "Regenerar clave" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "Regenerar clave" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1203,14 +1327,15 @@ msgstr "Lanzamientos" #: src/modules/ui/input/components/ImageInput.tsx:172 msgid "Remove" msgstr "Eliminar" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "Quitar de favoritos" @@ -1227,8 +1352,8 @@ msgstr "Restablecer a" msgid "Results" msgstr "Resultados" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "Roles" @@ -1237,10 +1362,6 @@ msgstr "Roles" msgid "Run a workflow and return here to view its executions" msgstr "Ejecuta un workflow y vuelve aquí para ver sus ejecuciones" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "SSO" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1260,7 +1381,7 @@ msgid "Search an index..." msgstr "Buscar un índice..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "Buscar campos" @@ -1278,25 +1399,25 @@ msgstr "Buscar registros" msgid "Security" msgstr "Seguridad" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "Ver versión activa" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "Ver ejecuciones" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "Ver versiones" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "Ver historial de versiones" @@ -1320,7 +1441,7 @@ msgstr "Panel de administración del servidor" msgid "Set email visibility, manage your blocklist and more." msgstr "Configura la visibilidad del correo electrónico, gestiona tu lista de bloqueo y más." -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "Configura el nombre de tu dominio" @@ -1343,11 +1464,11 @@ msgstr "Comparte este enlace para invitar a los usuarios a unirse a tu espacio d msgid "Should changing a field's label also change the API name?" msgstr "¿Debería cambiar también el nombre de la API al cambiar la etiqueta de un campo?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "Iniciar sesión" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "Registrarse" @@ -1368,6 +1489,10 @@ msgstr "Ordenar" msgid "Spanish" msgstr "Español" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "SSO" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "Subdominio" @@ -1397,10 +1522,6 @@ msgstr "Suma" msgid "Support" msgstr "Soporte" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "Cambiar facturación {to}" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "Cambiar {from}" @@ -1409,28 +1530,32 @@ msgstr "Cambiar {from}" msgid "Switch {to}" msgstr "Cambiar {to}" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "Cambiar facturación {to}" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "Sincronizar etiqueta de campo y nombre de API" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "Configuración del sistema - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "Configuración del sistema - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "Configuración del sistema - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "Términos del servicio" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "Prueba" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "Probar Workflow" @@ -1448,6 +1573,10 @@ msgstr "El correo electrónico asociado a tu cuenta" msgid "The name and icon of this field" msgstr "El nombre e icono de este campo" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "La página que buscas ha desaparecido o nunca existió. Volvamos a la pista" @@ -1477,11 +1606,27 @@ msgstr "Esta acción no se puede deshacer. Esto eliminará permanentemente a est msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "Esta acción no se puede deshacer. Esto eliminará permanentemente todo tu espacio de trabajo. <0/> Escribe tu correo electrónico para confirmar." +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "Formato de hora" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "a mensual" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "a anual" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "Tipo de disparador" @@ -1494,20 +1639,19 @@ msgstr "El tipo de disparador debe ser Manual - cuando no se seleccionan registr msgid "Type" msgstr "Tipo" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "Escribe cualquier cosa" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "URL" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "Único" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "Contactos ilimitados" @@ -1516,6 +1660,11 @@ msgstr "Contactos ilimitados" msgid "Upload" msgstr "Subir" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "URL" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1573,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "Bienvenido a {workspaceName}" @@ -1593,9 +1746,9 @@ msgstr "No se puede probar el workflow" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1616,10 +1769,23 @@ msgstr "Espacio de trabajo" msgid "Workspace Deletion" msgstr "Eliminación del espacio de trabajo" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "Escribe una descripción" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "sí" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "Se te cobrará inmediatamente el año completo." @@ -1632,52 +1798,14 @@ msgstr "Tu saldo de crédito se utilizará para pagar las facturas mensuales." msgid "Your name as it will be displayed" msgstr "Tu nombre tal y como se mostrará" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "Tu espacio de trabajo se desactivará" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "y" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "empleados" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "de mensual a anual" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "de anual a mensual" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "o" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "a mensual" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "a anual" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "sí" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{aggregateLabel} de {fieldLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "Clave API {apiKeyName}" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/locales/fi-FI.po b/packages/twenty-front/src/locales/fi-FI.po new file mode 100644 index 000000000..38cc428fa --- /dev/null +++ b/packages/twenty-front/src/locales/fi-FI.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Finnish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: fi\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/fr.po b/packages/twenty-front/src/locales/fr-FR.po similarity index 91% rename from packages/twenty-front/src/locales/fr.po rename to packages/twenty-front/src/locales/fr-FR.po index 5f0d12612..43b46bd31 100644 --- a/packages/twenty-front/src/locales/fr.po +++ b/packages/twenty-front/src/locales/fr-FR.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: fr\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: French\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: fr\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{aggregateLabel} de {fieldLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "{apiKeyName} Clé API" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. Configurer le champ" msgid "24h ({hour24Label})" msgstr "24h ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API & Webhooks" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "Clé API" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "Nom de l'API" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "Clés API" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "Un environnement partagé où vous pourrez gérer vos relations clients avec votre équipe." #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "Comptes" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "Activer" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "Activer le workflow" @@ -91,14 +101,14 @@ msgstr "Ajouter" msgid "Add Field" msgstr "Ajouter un champ" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "Ajouter un fournisseur d'identité SSO" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "Ajouter un objet" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "Ajouter un fournisseur d'identité SSO" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "Ajouter à la liste de blocage" @@ -109,10 +119,10 @@ msgstr "Ajouter à la liste de blocage" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "Ajouter aux favoris" @@ -133,7 +143,7 @@ msgstr "Tous" msgid "All ({relationRecordsCount})" msgstr "Tous ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "Tous les rôles" @@ -161,6 +171,28 @@ msgstr "Une erreur s'est produite lors de la mise à jour du mot de passe" msgid "An optional description" msgstr "Une description facultative" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "et" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API & Webhooks" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "Clé API" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "Clés API" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "Nom de l'API" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "Apparence" @@ -174,14 +206,22 @@ msgstr "Êtes-vous sûr de vouloir modifier votre intervalle de facturation ?" msgid "Ascending" msgstr "Ascendant" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "Attribuer des rôles pour spécifier les autorisations d'accès de chaque membre" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "Membres assignés" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "Attribué à" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "Affectation" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "Au moins 8 caractères." @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "Calendriers" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "Annuler" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "Annuler le plan" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "Annuler à tout moment" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "Annuler le plan" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "Annuler votre abonnement" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "Changer {to}" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "Changer le mot de passe" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "Changer {to}" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "Chinois - Simplifié" @@ -280,14 +320,14 @@ msgstr "Chinois - Traditionnel" msgid "Choose an object" msgstr "Choisir un objet" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "Choisissez votre essai" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "Choisissez votre fournisseur" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "Choisissez votre essai" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "Fermer" @@ -312,11 +352,11 @@ msgstr "Configurer vos paramètres de courriel et de calendrier." msgid "Connect a new account to your workspace" msgstr "Connecter un nouveau compte à votre espace de travail" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "Se connecter avec Google" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "Se connecter avec Microsoft" @@ -329,12 +369,14 @@ msgid "Context" msgstr "Contexte" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "Continuer" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "Continuer avec le courriel" @@ -379,22 +421,34 @@ msgstr "Compter les non vides" msgid "Count unique values" msgstr "Compter les valeurs uniques" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "Créez un workflow et revenez ici pour voir ses versions" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "Créer une clé API" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "Créer un nouvel enregistrement" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "Créer un profil" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "Créer un rôle" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "Créer un Webhook" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "Créez un workflow et revenez ici pour voir ses versions" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "Créer un nouvel enregistrement" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "Créez votre espace de travail" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "Date et heure" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "Désactiver" @@ -451,14 +505,14 @@ msgstr "Désactiver" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "Désactiver \"Synchroniser les étiquettes des objets et les noms des API\" pour définir un nom d'API personnalisé" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "Désactiver le workflow" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "Désactiver ce champ" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "Désactiver le workflow" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "Définir le nom et la description de votre objet" @@ -470,19 +524,15 @@ msgstr "Définir le nom et la description de votre objet" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "Supprimer" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "Supprimer la clé API" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "Supprimer le compte" msgid "Delete account and all the associated data" msgstr "Supprimer le compte et toutes les données associées" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "Supprimer la clé API" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "Supprimer l'enregistrement" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "Supprimer des enregistrements" @@ -514,6 +566,14 @@ msgstr "Supprimer cette intégration" msgid "Delete webhook" msgstr "Supprimer le webhook" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "Supprimer le workflow" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "Supprimer les workflows" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -534,8 +594,10 @@ msgstr "Descendant" msgid "Description" msgstr "Description" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "Détruire" @@ -549,8 +611,8 @@ msgid "Developers" msgstr "Développeurs" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "Rejeter le brouillon" @@ -559,9 +621,9 @@ msgid "Display as relative date" msgstr "Afficher comme date relative" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "Domaine" @@ -610,6 +672,10 @@ msgstr "Le courriel ou le domaine est déjà dans la liste de blocage" msgid "Emails" msgstr "Courriels" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "employés" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "Employés" @@ -648,6 +714,7 @@ msgstr "Erreur lors de la régénération de la clé API : {err}" #: src/pages/settings/SettingsBilling.tsx:124 msgid "Error while switching subscription {to}." msgstr "Erreur lors du changement d'abonnement {to}." + #: src/pages/settings/developers/SettingsDevelopers.tsx:66 msgid "Establish Webhook endpoints for notifications on asynchronous events." msgstr "Configurer des points de terminaison Webhook pour les notifications d'événements asynchrones." @@ -665,8 +732,8 @@ msgid "Exit Settings" msgstr "Quitter les paramètres" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "Le nœud sélectionné doit être un nœud de création d'étape." +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -691,11 +758,11 @@ msgstr "Expire dans" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -703,24 +770,27 @@ msgstr "Exporter" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "Exporter les enregistrements" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "Exporter en PDF" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "Exporter la vue" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "Exporter les workflows" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "Favoris" @@ -750,6 +820,10 @@ msgstr "Filtre" msgid "Filters" msgstr "Filtres" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "Prénom" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "Mot de passe oublié ?" @@ -758,6 +832,14 @@ msgstr "Mot de passe oublié ?" msgid "French" msgstr "Français" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "de mensuel à annuel" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "d'annuel à mensuel" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "Accès complet" @@ -768,7 +850,7 @@ msgstr "Fonctions" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "Général" @@ -797,6 +879,10 @@ msgstr "Accordez à Twenty un accès temporaire à votre espace de travail pour msgid "Hide" msgstr "Cacher" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "Comment vous serez identifié sur l'application." + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -850,10 +936,6 @@ msgstr "Email ou domaine invalide" msgid "Invalid form values" msgstr "Valeurs de formulaire invalides" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "Inviter par lien" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "Inviter par email" @@ -862,6 +944,10 @@ msgstr "Inviter par email" msgid "Invite by link" msgstr "Inviter par lien" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "Inviter par lien" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "Lien d'invitation envoyé aux adresses email" @@ -890,6 +976,10 @@ msgstr "Lab" msgid "Language" msgstr "Langue" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "Nom de famille" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "Dernier" @@ -964,16 +1054,21 @@ msgstr "Déplacer à droite" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "Nom" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "Le nom ne peut pas être vide" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -984,7 +1079,7 @@ msgid "Name of your workspace" msgstr "Nom de votre espace de travail" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "Aller à l'enregistrement suivant" @@ -992,12 +1087,12 @@ msgstr "Aller à l'enregistrement suivant" msgid "Navigate to next version" msgstr "Aller à la version suivante" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "Aller au workflow suivant" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "Aller à l'enregistrement précédent" @@ -1005,7 +1100,7 @@ msgstr "Aller à l'enregistrement précédent" msgid "Navigate to previous version" msgstr "Aller à la version précédente" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "Aller au workflow précédent" @@ -1013,6 +1108,14 @@ msgstr "Aller au workflow précédent" msgid "New" msgstr "Nouveau" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "Nouveau compte" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "Nouvelle clé" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "Nouvelle clé" @@ -1025,30 +1128,22 @@ msgstr "Nouvel objet" msgid "New Password" msgstr "Nouveau mot de passe" +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "Nouvel enregistrement" + #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "Nouveau rôle" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "Nouveau Webhook" -#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "Nouveau compte" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "Nouvelle clé" - -#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 -msgid "New record" -msgstr "Nouvel enregistrement" - -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "Aucun compte connecté" @@ -1087,6 +1182,10 @@ msgstr "Ouvert" msgid "Options" msgstr "Options" +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "ou" + #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "Autres" @@ -1120,11 +1219,24 @@ msgstr "Pourcentage vide" msgid "Percent not empty" msgstr "Pourcentage non vide" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "Détruire définitivement l'enregistrement" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "Détruire définitivement les enregistrements" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "Détruire définitivement les workflows" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "Permissions" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1142,6 +1254,10 @@ msgstr "Veuillez taper \"{confirmationValue}\" pour confirmer que vous souhaitez msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "Veuillez taper {confirmationText} pour confirmer que vous souhaitez supprimer ce webhook." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "Portugais — Brésil" @@ -1150,6 +1266,14 @@ msgstr "Portugais — Brésil" msgid "Portuguese — Portugal" msgstr "Portugais — Portugal" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1181,10 +1305,6 @@ msgstr "Recevoir un email contenant un lien de mise à jour du mot de passe" msgid "Record Selection" msgstr "Sélection des enregistrements" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "Régénérer la clé" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1194,6 +1314,10 @@ msgstr "Régénérer une clé API" msgid "Regenerate key" msgstr "Régénérer la clé" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "Régénérer la clé" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1208,10 +1332,10 @@ msgstr "Retirer" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "Retirer des favoris" @@ -1228,8 +1352,8 @@ msgstr "Réinitialiser à" msgid "Results" msgstr "Résultats" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "Rôles" @@ -1238,10 +1362,6 @@ msgstr "Rôles" msgid "Run a workflow and return here to view its executions" msgstr "Exécutez un workflow et revenez ici pour voir ses exécutions" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "SSO" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1261,7 +1381,7 @@ msgid "Search an index..." msgstr "Rechercher un index..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "Champs de recherche" @@ -1279,25 +1399,25 @@ msgstr "Rechercher des enregistrements" msgid "Security" msgstr "Sécurité" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "Voir la version active" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "Voir les exécutions" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "Voir les versions" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "Voir l'historique des versions" @@ -1321,7 +1441,7 @@ msgstr "Panneau d'administration du serveur" msgid "Set email visibility, manage your blocklist and more." msgstr "Définir la visibilité des emails, gérer votre liste de blocage et plus encore." -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "Définir le nom de votre domaine" @@ -1344,11 +1464,11 @@ msgstr "Partagez ce lien pour inviter des utilisateurs à rejoindre votre espace msgid "Should changing a field's label also change the API name?" msgstr "Changer l'étiquette d'un champ doit-il aussi changer le nom de l'API ?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "Se connecter" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "S'inscrire" @@ -1369,6 +1489,10 @@ msgstr "Trier" msgid "Spanish" msgstr "Espagnol" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "SSO" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "Sous-domaine" @@ -1398,10 +1522,6 @@ msgstr "Somme" msgid "Support" msgstr "Support" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "Changer la facturation {to}" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "Changer {from}" @@ -1410,28 +1530,32 @@ msgstr "Changer {from}" msgid "Switch {to}" msgstr "Changer {to}" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "Changer la facturation {to}" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "Synchroniser l'étiquette du champ et le nom de l'API" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "Paramètres système - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "Paramètres système - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "Paramètres système - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "Conditions d'utilisation" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "Test" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "Tester le workflow" @@ -1449,6 +1573,10 @@ msgstr "L'email associé à votre compte" msgid "The name and icon of this field" msgstr "Le nom et l'icône de ce champ" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +msgstr "Le nom de votre organisation" + #: 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 "La page que vous recherchez a disparu ou n'a jamais existé. Revenons sur la bonne voie" @@ -1478,11 +1606,27 @@ msgstr "Cette action est irréversible. Cela supprimera définitivement cet util msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "Cette action est irréversible. Cela supprimera définitivement l'ensemble de votre espace de travail. <0/> Veuillez saisir votre adresse e-mail pour confirmer." +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "Ce rôle a les permissions suivantes." + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "Ce rôle est attribué à ces membres de l'espace de travail." + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "Format de l'heure" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "au mois" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "à l'année" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "Type de déclencheur" @@ -1495,20 +1639,19 @@ msgstr "Le type de déclencheur doit être Manuel - lorsqu'aucun enregistrement msgid "Type" msgstr "Type" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "Tapez n'importe quoi" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "URL" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "Unique" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "Erreur inconnue" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "Contacts illimités" @@ -1517,6 +1660,11 @@ msgstr "Contacts illimités" msgid "Upload" msgstr "Téléverser" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "URL" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1574,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "Bienvenue sur {workspaceName}" @@ -1594,9 +1746,9 @@ msgstr "Le workflow ne peut pas être testé" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1617,10 +1769,23 @@ msgstr "Espace de travail" msgid "Workspace Deletion" msgstr "Suppression de l'espace de travail" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "Logo de l'espace de travail" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "Nom de l'espace de travail" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "Rédigez une description" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "oui" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "Vous serez facturé immédiatement pour l'année entière." @@ -1633,52 +1798,14 @@ msgstr "Votre solde créditeur sera utilisé pour payer les factures mensuelles. msgid "Your name as it will be displayed" msgstr "Votre nom tel qu'il sera affiché" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "Votre nom tel qu'il sera affiché sur l'application" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "Votre espace de travail" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "Votre espace de travail sera désactivé" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "et" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "employés" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "de mensuel à annuel" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "d'annuel à mensuel" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "ou" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "au mois" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "à l'année" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "oui" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{aggregateLabel} de {fieldLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "{apiKeyName} Clé API" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/locales/generated/de-DE.ts b/packages/twenty-front/src/locales/generated/de-DE.ts new file mode 100644 index 000000000..edef22eeb --- /dev/null +++ b/packages/twenty-front/src/locales/generated/de-DE.ts @@ -0,0 +1 @@ +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" von \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API-Schlüssel\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1.000 Workflow-Knotenausführungen\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Feld konfigurieren\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"Abbrechen\"],\"uyJsf6\":[\"Über\"],\"AeXO77\":[\"Konto\"],\"nD0Y+a\":[\"Kontolöschung\"],\"bPwFdf\":[\"Konten\"],\"FQBaXG\":[\"Aktivieren\"],\"tu8A/k\":[\"Workflow aktivieren\"],\"F6pfE9\":[\"Aktiv\"],\"Mue4oc\":[\"Aktive API-Schlüssel, die von Ihnen oder Ihrem Team erstellt wurden.\"],\"m16xKo\":[\"Hinzufügen\"],\"DpV70M\":[\"Feld hinzufügen\"],\"dEO3Zx\":[\"Objekt hinzufügen\"],\"sgXUv+\":[\"SSO-Identitätsanbieter hinzufügen\"],\"5+ttxv\":[\"Zur Blockliste hinzufügen\"],\"pBsoKL\":[\"Zu Favoriten hinzufügen\"],\"m2qDV8\":[\"Fügen Sie Ihr erstes \",[\"objectLabel\"],\" hinzu\"],\"vLO+NG\":[\"Hinzugefügt am \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Alle\"],\"3saA7W\":[\"Alle (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Alle Rollen\"],\"GMx1K0\":[\"Anmeldungen über Google Single Sign-On zulassen.\"],\"dea+zy\":[\"Anmeldungen über Microsoft Single Sign-On zulassen.\"],\"wMg43c\":[\"Einladung neuer Benutzer durch Teilen eines Einladungslinks zulassen.\"],\"vHeVg5\":[\"Benutzern erlauben, sich mit E-Mail und Passwort anzumelden.\"],\"LG4K0m\":[\"Beim Aktualisieren des Passworts ist ein Fehler aufgetreten\"],\"mJ6m4C\":[\"Eine optionale Beschreibung\"],\"HZFm5R\":[\"und\"],\"0RqpZr\":[\"API & Webhooks\"],\"yRnk5W\":[\"API-Schlüssel\"],\"5h8ooz\":[\"API-Schlüssel\"],\"kAtj+q\":[\"API-Name\"],\"aAIQg2\":[\"Erscheinungsbild\"],\"3iX0kh\":[\"Sind Sie sicher, dass Sie Ihr Abrechnungsintervall ändern möchten?\"],\"nYD/Cq\":[\"Aufsteigend\"],\"rfYmIr\":[\"Rollen zuweisen, um die Zugriffsrechte der Mitglieder festzulegen\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"Zugewiesen an\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"Mindestens 8 Zeichen lang.\"],\"Y7Dx6e\":[\"Mindestens eine Authentifizierungsmethode muss aktiviert sein\"],\"P8fBlG\":[\"Authentifizierung\"],\"yIVrHZ\":[\"Autorisieren\"],\"3uQmjD\":[\"Durchschnitt\"],\"Dht9W3\":[\"Zurück zum Inhalt\"],\"R+w/Va\":[\"Abrechnung\"],\"K1172m\":[\"Blockliste\"],\"2yl5lQ\":[\"Anruf buchen\"],\"8Pfllj\":[\"Durch die Nutzung von Twenty stimmen Sie den\"],\"PmmvzS\":[\"Berechnen\"],\"AjVXBS\":[\"Kalender\"],\"EUpfsd\":[\"Kalender\"],\"dEgA5A\":[\"Abbrechen\"],\"0TllC8\":[\"Jederzeit kündigen\"],\"rRK/Lf\":[\"Plan kündigen\"],\"N6gPiD\":[\"Abonnement kündigen\"],\"OfzMnb\":[\"Ändern zu \",[\"to\"]],\"VhMDMg\":[\"Passwort ändern\"],\"SviKkE\":[\"Chinesisch - Vereinfacht\"],\"dzb4Ep\":[\"Chinesisch - Traditionell\"],\"JEFFOR\":[\"Objekt auswählen\"],\"KT6rEB\":[\"Anbieter auswählen\"],\"9qP96p\":[\"Wählen Sie Ihre Testphase\"],\"yz7wBu\":[\"Schließen\"],\"+zUMwJ\":[\"SSO-Verbindung konfigurieren\"],\"QTNsSm\":[\"Kalendereinstellungen konfigurieren und anpassen.\"],\"aGwm+D\":[\"Anzeigen von Datumsangaben in der App konfigurieren\"],\"Bh4GBD\":[\"E-Mail- und Kalendereinstellungen konfigurieren.\"],\"D8ATlr\":[\"Neues Konto mit Ihrem Arbeitsbereich verbinden\"],\"Zgi9Fd\":[\"Mit Google verbinden\"],\"IOfqM8\":[\"Mit Microsoft verbinden\"],\"9TzudL\":[\"Verbundene Konten\"],\"M73whl\":[\"Kontext\"],\"xGVfLh\":[\"Weiter\"],\"RvVi9c\":[\"Mit E-Mail fortfahren\"],\"oZyG4C\":[\"Mit Google fortfahren\"],\"ztoybH\":[\"Mit Microsoft fortfahren\"],\"CcGOj+\":[\"Copilot\"],\"7eVkEH\":[\"Einladungslink kopieren\"],\"Ej5euX\":[\"Diesen Schlüssel kopieren, da er nicht mehr sichtbar sein wird\"],\"wBMjJ2\":[\"Zählen\"],\"EkZfen\":[\"Alle zählen\"],\"vQJINq\":[\"Leere zählen\"],\"DzRsDJ\":[\"Nicht leere zählen\"],\"9FZBbf\":[\"Eindeutige Werte zählen\"],\"zNoOC2\":[\"Erstellen Sie einen Workflow und kehren Sie hierher zurück, um die Versionen anzuzeigen\"],\"uXGLuq\":[\"API-Schlüssel erstellen\"],\"d0DCww\":[\"Neuen Datensatz erstellen\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"Webhook erstellen\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"Benutzerdefinierte Objekte\"],\"qt+EaC\":[\"Passen Sie die verfügbaren Felder in den \",[\"objectLabelSingular\"],\"-Ansichten an.\"],\"CMhr4u\":[\"Domäne anpassen\"],\"bCJa9l\":[\"Sicherheit des Arbeitsbereichs anpassen\"],\"Zz6Cxn\":[\"Gefahrenzone\"],\"5cNMFz\":[\"Datenmodell\"],\"r+cVRP\":[\"Datentyp\"],\"mYGY3B\":[\"Datum\"],\"Ud9zHv\":[\"Datum und Uhrzeit\"],\"5y3O+A\":[\"Deaktivieren\"],\"qk4i22\":[\"\\\"Objektbezeichnungen und API-Namen synchronisieren\\\" deaktivieren, um einen benutzerdefinierten API-Namen festzulegen\"],\"gexAq8\":[\"Dieses Feld deaktivieren\"],\"4tpC8V\":[\"Workflow deaktivieren\"],\"Y2ImVJ\":[\"Namen und Beschreibung des Objekts definieren\"],\"cnGeoo\":[\"Löschen\"],\"ZDGm40\":[\"Konto löschen\"],\"gAz0S5\":[\"Konto und alle zugehörigen Daten löschen\"],\"hGfWDm\":[\"API-Schlüssel löschen\"],\"4dpwsE\":[\"Datensatz löschen\"],\"kf0A63\":[\"Datensätze löschen\"],\"T6S2Ns\":[\"Diese Integration löschen\"],\"snMaH4\":[\"Webhook löschen\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"Arbeitsbereich löschen\"],\"mk2Ygs\":[\"Gesamten Arbeitsbereich löschen\"],\"Cko536\":[\"Absteigend\"],\"Nu4oKW\":[\"Beschreibung\"],\"2xxBws\":[\"Zerstören\"],\"n+SX4g\":[\"Entwickler\"],\"zAg2B9\":[\"Entwurf verwerfen\"],\"i66xz9\":[\"Als relatives Datum anzeigen\"],\"EoKe5U\":[\"Domäne\"],\"QVVmxi\":[\"Z.B. Backoffice-Integration\"],\"tOkc8o\":[\"Früheste\"],\"JTbQuO\":[\"Frühestes Datum\"],\"v+uKyy\":[\"Abrechnungsintervall bearbeiten\"],\"h2KoTu\":[\"Zahlungsmethode bearbeiten, Rechnungen einsehen und mehr\"],\"6o1M/Q\":[\"Bearbeiten Sie den Namen Ihrer Subdomain oder legen Sie eine benutzerdefinierte Domäne fest.\"],\"O3oNi5\":[\"E-Mail\"],\"lfQsvW\":[\"E-Mail-Integration\"],\"QT/Wo7\":[\"E-Mail oder Domain ist bereits in der Blockliste\"],\"BXEcos\":[\"E-Mails\"],\"eXoH4Q\":[\"Mitarbeiter\"],\"gqv5ZL\":[\"Mitarbeiter\"],\"N2S1rs\":[\"Leer\"],\"T3juzf\":[\"Endpunkt-URL\"],\"lYGfRP\":[\"Englisch\"],\"/bfFKe\":[\"Genießen Sie eine \",[\"withCreditCardTrialPeriodDuration\"],\"-tägige kostenlose Testphase\"],\"GpB8YV\":[\"Unternehmen\"],\"c3qGJX\":[\"Fehler beim Löschen des API-Schlüssels: \",[\"err\"]],\"bj7nh3\":[\"Fehler beim Regenerieren des API-Schlüssels: \",[\"err\"]],\"VSQxWH\":[\"Fehler beim Wechseln des Abonnements \",[\"to\"],\".\"],\"JLxMta\":[\"Erstellen Sie Webhook-Endpunkte für Benachrichtigungen über asynchrone Ereignisse.\"],\"cIgBjB\":[\"Die folgenden Personen und Domains von der E-Mail-Synchronisierung ausschließen\"],\"fV7V51\":[\"Vorhandene Objekte\"],\"IZ4o2e\":[\"Einstellungen verlassen\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"Erfahrung\"],\"LxRNPw\":[\"Ablauf\"],\"SkXfL0\":[\"Ablaufdatum\"],\"i9qiyR\":[\"Läuft ab in\"],\"GS+Mus\":[\"Exportieren\"],\"ep2rbf\":[\"Datensätze exportieren\"],\"q46CjD\":[\"Als PDF exportieren\"],\"DaGxE0\":[\"Ansicht exportieren\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"Favoriten\"],\"zXgopL\":[\"Feldtyp\"],\"vF68cg\":[\"Felder\"],\"3w/aqw\":[\"Felderanzahl\"],\"o7J4JM\":[\"Filter\"],\"cSev+j\":[\"Filter\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"aTieE0\":[\"von monatlich zu jährlich\"],\"K04lE5\":[\"von jährlich zu monatlich\"],\"scmRyR\":[\"Vollzugriff\"],\"xANKBj\":[\"Funktionen\"],\"Weq9zb\":[\"Allgemein\"],\"DDcvSo\":[\"Deutsch\"],\"NXEW3h\":[\"Holen Sie das Beste aus Ihrem Arbeitsbereich heraus, indem Sie Ihr Team einladen.\"],\"zSGbaR\":[\"Abonnement abschließen\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Gewähren Sie dem Twenty-Support vorübergehend Zugang zu Ihrem Arbeitsbereich, damit wir Probleme beheben oder Inhalte in Ihrem Namen wiederherstellen können. Sie können den Zugriff jederzeit widerrufen.\"],\"vLyv1R\":[\"Ausblenden\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"Symbol und Name\"],\"sJGljQ\":[\"Kennung\"],\"j843N3\":[\"Wenn Sie diesen Schlüssel verloren haben, können Sie ihn neu generieren, aber beachten Sie, dass jedes Skript, das diesen Schlüssel verwendet, aktualisiert werden muss. Bitte geben Sie zur Bestätigung \\\"\",[\"confirmationValue\"],\"\\\" ein.\"],\"NoNwIX\":[\"Inaktiv\"],\"pZ/USH\":[\"Indizes\"],\"JE2tjr\":[\"Die Eingabe muss im CamelCase-Format sein und darf nicht mit einer Zahl beginnen\"],\"AwUsnG\":[\"Instanzen\"],\"nbfdhU\":[\"Integrationen\"],\"NtFk/Z\":[\"Ungültiger Authentifizierungsanbieter\"],\"B2Tpo0\":[\"Ungültige E-Mail\"],\"/m52AE\":[\"Ungültige E-Mail oder Domain\"],\"QdoUFL\":[\"Ungültige Formularwerte\"],\"0M8+El\":[\"Per E-Mail einladen\"],\"PWIq/W\":[\"Per Link einladen\"],\"3athPG\":[\"Per Link einladen\"],\"5IfmKA\":[\"Einladungslink an E-Mail-Adressen gesendet\"],\"d+Y+rP\":[\"Laden Sie Ihr Team ein\"],\"Lj7sBL\":[\"Italienisch\"],\"dFtidv\":[\"Japanisch\"],\"h6S9Yz\":[\"Koreanisch\"],\"zrpwCd\":[\"Labor\"],\"vXIe7J\":[\"Sprache\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"Neueste\"],\"Kcjbmz\":[\"Neuester Termin\"],\"pQjjYo\":[\"Link in die Zwischenablage kopiert\"],\"FgAxTj\":[\"Abmelden\"],\"nOhz3x\":[\"Abmelden\"],\"T6YjCk\":[\"Mitglieder verwalten\"],\"4cjU2u\":[\"Verwalten Sie hier die Mitglieder Ihres Bereichs\"],\"FyFNsd\":[\"Verwalten Sie Ihre Internetkonten.\"],\"36kYu0\":[\"Abonnement verwalten\"],\"3Sdni6\":[\"Als erledigt markieren\"],\"CK1KXz\":[\"Max\"],\"wlQNTg\":[\"Mitglieder\"],\"eTUF28\":[\"Min\"],\"3Siwmw\":[\"Mehr Optionen\"],\"iSLA/r\":[\"Nach links verschieben\"],\"Ubl2by\":[\"Nach rechts verschieben\"],\"6YtxFj\":[\"Name\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"Name Ihres API-Schlüssels\"],\"J7w8lI\":[\"Name Ihres Arbeitsbereichs\"],\"2T8KCk\":[\"Zum nächsten Datensatz navigieren\"],\"veSA19\":[\"Zur nächsten Version navigieren\"],\"ZTEho+\":[\"Zum nächsten Workflow navigieren\"],\"2tw9bo\":[\"Zum vorherigen Datensatz navigieren\"],\"I+Pm5V\":[\"Zur vorherigen Version navigieren\"],\"QVUN3K\":[\"Zum vorherigen Workflow navigieren\"],\"isRobC\":[\"Neu\"],\"Kcr9Fr\":[\"Neues Konto\"],\"o8MyXb\":[\"Neuer Schlüssel\"],\"j313SZ\":[\"Neuer Schlüssel\"],\"hFxdey\":[\"Neues Objekt\"],\"7vhWI8\":[\"Neues Passwort\"],\"BcCzLv\":[\"Neuer Datensatz\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"Neuer Webhook\"],\"pwenQu\":[\"Kein verbundenes Konto\"],\"0uWxPM\":[\"Noch keine Workflow-Ausführungen\"],\"AQCvCC\":[\"Noch keine Workflow-Versionen\"],\"4wUkDk\":[\"Nicht leer\"],\"W0i24j\":[\"Objekt\"],\"B3toQF\":[\"Objekte\"],\"KNz3EF\":[\"Abseits der ausgetretenen Pfade\"],\"OV5wZZ\":[\"Geöffnet\"],\"0zpgxV\":[\"Optionen\"],\"BzEFor\":[\"oder\"],\"/IX/7x\":[\"Andere\"],\"boJlGf\":[\"Seite nicht gefunden\"],\"8ZsakT\":[\"Passwort\"],\"BxQ79w\":[\"Das Passwort wurde aktualisiert\"],\"mi6Rel\":[\"Der Link zum Zurücksetzen des Passworts wurde an die E-Mail gesendet\"],\"SrVzRe\":[\"Prozent\"],\"yIK1GU\":[\"Prozent leer\"],\"PWLd4c\":[\"Prozent nicht leer\"],\"Bv3y5w\":[\"Datensatz dauerhaft löschen\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"Bild\"],\"jEw0Mr\":[\"Bitte geben Sie eine gültige URL ein\"],\"6nsIo3\":[\"Bitte geben Sie \\\"\",[\"confirmationValue\"],\"\\\" ein, um zu bestätigen, dass Sie diesen API-Schlüssel löschen möchten. Beachten Sie, dass jedes Skript, das diesen Schlüssel verwendet, nicht mehr funktioniert.\"],\"mFZTXr\":[\"Bitte geben Sie \",[\"confirmationText\"],\" ein, um zu bestätigen, dass Sie diesen Webhook löschen möchten.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portugiesisch - Brasilien\"],\"xtXHeo\":[\"Portugiesisch - Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Vorschau\"],\"LcET2C\":[\"Datenschutzrichtlinie\"],\"vERlcd\":[\"Profil\"],\"YJgRqq\":[\"Pseudo-Englisch\"],\"ibPuCP\":[\"Dokumentation lesen\"],\"v3xM25\":[\"Erhalten Sie eine E-Mail mit einem Link zur Passwortaktualisierung\"],\"dSCufP\":[\"Datensatz-Auswahl\"],\"vpZcGd\":[\"API-Schlüssel neu generieren\"],\"Mwqo5m\":[\"Schlüssel neu generieren\"],\"D+Mv78\":[\"Schlüssel regenerieren\"],\"5icoS1\":[\"Veröffentlichungen\"],\"t/YqKh\":[\"Entfernen\"],\"T/pF0Z\":[\"Aus Favoriten entfernen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"1IWc1n\":[\"Zurücksetzen auf\"],\"kx0s+n\":[\"Ergebnisse\"],\"5dJK4M\":[\"Rollen\"],\"UX0N2y\":[\"Führen Sie einen Workflow aus und kehren Sie zurück, um die Ausführungen anzuzeigen\"],\"A1taO8\":[\"Suche\"],\"8NBMeZ\":[\"Suche '\",[\"commandMenuSearch\"],\"' mit...\"],\"l1/uy2\":[\"Feld suchen...\"],\"k7kp5/\":[\"Index suchen...\"],\"7taA9j\":[\"Felder suchen\"],\"ofuw3g\":[\"Objekt suchen...\"],\"IMeaSJ\":[\"Datensätze suchen\"],\"a3LDKx\":[\"Sicherheit\"],\"QREcJS\":[\"Aktive Version anzeigen\"],\"OpPn5Z\":[\"Läufe anzeigen\"],\"EtyY4+\":[\"Versionen anzeigen\"],\"lYhPN0\":[\"Versionsverlauf anzeigen\"],\"xraglu\":[\"Wählen Sie die Ereignisse aus, die Sie an diesen Endpunkt senden möchten\"],\"AXTJAW\":[\"Bevorzugte Sprache auswählen\"],\"mjK8F3\":[\"Einladung per E-Mail an Ihr Team senden\"],\"yy5k7a\":[\"Server-Admin-Bereich\"],\"V7fgiB\":[\"E-Mail-Sichtbarkeit festlegen, Blockliste verwalten und mehr.\"],\"cx14rp\":[\"Domainnamen festlegen\"],\"tn41zE\":[\"Subdomainnamen festlegen\"],\"Tz0i8g\":[\"Einstellungen\"],\"Vy9kmk\":[\"Teilen Sie diesen Link, um Benutzer in Ihren Arbeitsbereich einzuladen\"],\"gWk8gY\":[\"Sollte die Änderung einer Feldbezeichnung auch den API-Namen ändern?\"],\"5lWFkC\":[\"Anmelden\"],\"e+RpCP\":[\"Registrieren\"],\"5v3IHX\":[\"Single Sign-On (SSO)\"],\"6Uau97\":[\"Überspringen\"],\"f6Hub0\":[\"Sortieren\"],\"65A04M\":[\"Spanisch\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdomain\"],\"omhc+7\":[\"Subdomain bereits vergeben\"],\"OlC/tU\":[\"Die Subdomain darf nicht länger als 30 Zeichen sein\"],\"ZETwlU\":[\"Die Subdomain darf nicht kürzer als 3 Zeichen sein\"],\"B5jRKH\":[\"Abonnement wurde auf \",[\"to\"],\" umgestellt\"],\"AxQiPW\":[\"Summe\"],\"XYLcNv\":[\"Support\"],\"9yk9d1\":[\"Wechseln von \",[\"from\"]],\"qi74XZ\":[\"Wechseln zu \",[\"to\"]],\"L6Fg36\":[\"Abrechnung auf \",[\"to\"],\" umstellen\"],\"AtzMpB\":[\"Feldbezeichnung und API-Name synchronisieren\"],\"E3AMmw\":[\"Systemeinstellungen - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Systemeinstellungen - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Nutzungsbedingungen\"],\"NnH3pK\":[\"Test\"],\"bU9B27\":[\"Test-Workflow\"],\"2OUtmv\":[\"Die Beschreibung dieses Felds\"],\"VGZYbZ\":[\"Die mit Ihrem Konto verknüpfte E-Mail\"],\"h8mvCd\":[\"Der Name und das Symbol dieses Felds\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"Die gesuchte Seite ist entweder nicht mehr vorhanden oder hat nie existiert. Lassen Sie uns Ihnen helfen, wieder auf den richtigen Weg zu kommen\"],\"uWikAA\":[\"Die Werte dieses Felds\"],\"+69KDk\":[\"Die Werte dieses Felds müssen eindeutig sein\"],\"ynfkhb\":[\"Beim Aktualisieren des Passworts ist ein Fehler aufgetreten.\"],\"PmtLRf\":[\"Es gab ein Problem\"],\"hqCwGc\":[\"Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird dieser Benutzer dauerhaft gelöscht und aus allen seinen Aufgaben entfernt.\"],\"gWGuHC\":[\"Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird Ihr gesamter Arbeitsbereich dauerhaft gelöscht. <0/> Bitte geben Sie zur Bestätigung Ihre E-Mail ein.\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"Zeitformat\"],\"aqMzDX\":[\"zu monatlich\"],\"WXXiXO\":[\"zu jährlich\"],\"PiUt3N\":[\"Auslöser-Typ\"],\"IQ5pAL\":[\"Der Auslöser-Typ sollte manuell sein - wenn keine Aufzeichnung(en) ausgewählt ist/sind\"],\"+zy2Nq\":[\"Typ\"],\"U83IeL\":[\"Geben Sie irgendetwas ein\"],\"wSXm5S\":[\"Einzigartig\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"Unbegrenzte Kontakte\"],\"ONWvwQ\":[\"Hochladen\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Als Entwurf verwenden\"],\"oTTQsc\":[\"Verwenden Sie nur Buchstaben, Zahlen und Bindestriche. Beginnen und enden Sie mit einem Buchstaben oder einer Zahl\"],\"c6uZUV\":[\"Verwenden Sie unsere API oder fügen Sie Ihr erstes \",[\"objectLabel\"],\" manuell hinzu\"],\"7PzzBU\":[\"Benutzer\"],\"IjyOjp\":[\"Benutzer ist nicht eingeloggt\"],\"fXVIZq\":[\"Werte\"],\"KANz0G\":[\"Rechnungsdetails anzeigen\"],\"6n7jtr\":[\"Visualisieren\"],\"id6ein\":[\"Wir unterstützen Ihre quadratischen PNGs, JPEGs und GIFs unter 10MB\"],\"ZS7vYp\":[\"Wir senden POST-Anfragen an diesen Endpunkt für jedes neue Ereignis\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Willkommen bei \",[\"workspaceName\"]],\"C51ilI\":[\"Wann der API-Schlüssel abläuft.\"],\"leUubq\":[\"Wann der Schlüssel deaktiviert wird\"],\"wvyffT\":[\"Workflow kann nicht getestet werden\"],\"pmUArF\":[\"Arbeitsbereich\"],\"VicISP\":[\"Arbeitsbereich löschen\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"Beschreibung schreiben\"],\"3d1wCB\":[\"ja\"],\"zSkMV0\":[\"Sie werden sofort für das gesamte Jahr belastet.\"],\"XVnj6K\":[\"Ihr Guthaben wird zur Begleichung der monatlichen Rechnungen verwendet.\"],\"9ivpwk\":[\"Ihr Name, wie er angezeigt wird\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Ihr Arbeitsbereich wird deaktiviert\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/de.ts b/packages/twenty-front/src/locales/generated/de.ts deleted file mode 100644 index afc6c735d..000000000 --- a/packages/twenty-front/src/locales/generated/de.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" von \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API-Schlüssel\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1.000 Workflow-Knotenausführungen\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Feld konfigurieren\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"Abbrechen\"],\"uyJsf6\":[\"Über\"],\"AeXO77\":[\"Konto\"],\"nD0Y+a\":[\"Kontolöschung\"],\"bPwFdf\":[\"Konten\"],\"FQBaXG\":[\"Aktivieren\"],\"tu8A/k\":[\"Workflow aktivieren\"],\"F6pfE9\":[\"Aktiv\"],\"Mue4oc\":[\"Aktive API-Schlüssel, die von Ihnen oder Ihrem Team erstellt wurden.\"],\"m16xKo\":[\"Hinzufügen\"],\"DpV70M\":[\"Feld hinzufügen\"],\"dEO3Zx\":[\"Objekt hinzufügen\"],\"sgXUv+\":[\"SSO-Identitätsanbieter hinzufügen\"],\"5+ttxv\":[\"Zur Blockliste hinzufügen\"],\"pBsoKL\":[\"Zu Favoriten hinzufügen\"],\"m2qDV8\":[\"Fügen Sie Ihr erstes \",[\"objectLabel\"],\" hinzu\"],\"vLO+NG\":[\"Hinzugefügt am \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Alle\"],\"3saA7W\":[\"Alle (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Alle Rollen\"],\"GMx1K0\":[\"Anmeldungen über Google Single Sign-On zulassen.\"],\"dea+zy\":[\"Anmeldungen über Microsoft Single Sign-On zulassen.\"],\"wMg43c\":[\"Einladung neuer Benutzer durch Teilen eines Einladungslinks zulassen.\"],\"vHeVg5\":[\"Benutzern erlauben, sich mit E-Mail und Passwort anzumelden.\"],\"LG4K0m\":[\"Beim Aktualisieren des Passworts ist ein Fehler aufgetreten\"],\"mJ6m4C\":[\"Eine optionale Beschreibung\"],\"HZFm5R\":[\"und\"],\"0RqpZr\":[\"API & Webhooks\"],\"yRnk5W\":[\"API-Schlüssel\"],\"5h8ooz\":[\"API-Schlüssel\"],\"kAtj+q\":[\"API-Name\"],\"aAIQg2\":[\"Erscheinungsbild\"],\"3iX0kh\":[\"Sind Sie sicher, dass Sie Ihr Abrechnungsintervall ändern möchten?\"],\"nYD/Cq\":[\"Aufsteigend\"],\"rfYmIr\":[\"Rollen zuweisen, um die Zugriffsrechte der Mitglieder festzulegen\"],\"lxQ+5m\":[\"Zugewiesen an\"],\"H8QGSx\":[\"Mindestens 8 Zeichen lang.\"],\"Y7Dx6e\":[\"Mindestens eine Authentifizierungsmethode muss aktiviert sein\"],\"P8fBlG\":[\"Authentifizierung\"],\"yIVrHZ\":[\"Autorisieren\"],\"3uQmjD\":[\"Durchschnitt\"],\"Dht9W3\":[\"Zurück zum Inhalt\"],\"R+w/Va\":[\"Abrechnung\"],\"K1172m\":[\"Blockliste\"],\"2yl5lQ\":[\"Anruf buchen\"],\"8Pfllj\":[\"Durch die Nutzung von Twenty stimmen Sie den\"],\"PmmvzS\":[\"Berechnen\"],\"AjVXBS\":[\"Kalender\"],\"EUpfsd\":[\"Kalender\"],\"dEgA5A\":[\"Abbrechen\"],\"0TllC8\":[\"Jederzeit kündigen\"],\"rRK/Lf\":[\"Plan kündigen\"],\"N6gPiD\":[\"Abonnement kündigen\"],\"OfzMnb\":[\"Ändern zu \",[\"to\"]],\"VhMDMg\":[\"Passwort ändern\"],\"SviKkE\":[\"Chinesisch - Vereinfacht\"],\"dzb4Ep\":[\"Chinesisch - Traditionell\"],\"JEFFOR\":[\"Objekt auswählen\"],\"KT6rEB\":[\"Anbieter auswählen\"],\"9qP96p\":[\"Wählen Sie Ihre Testphase\"],\"yz7wBu\":[\"Schließen\"],\"+zUMwJ\":[\"SSO-Verbindung konfigurieren\"],\"QTNsSm\":[\"Kalendereinstellungen konfigurieren und anpassen.\"],\"aGwm+D\":[\"Anzeigen von Datumsangaben in der App konfigurieren\"],\"Bh4GBD\":[\"E-Mail- und Kalendereinstellungen konfigurieren.\"],\"D8ATlr\":[\"Neues Konto mit Ihrem Arbeitsbereich verbinden\"],\"Zgi9Fd\":[\"Mit Google verbinden\"],\"IOfqM8\":[\"Mit Microsoft verbinden\"],\"9TzudL\":[\"Verbundene Konten\"],\"M73whl\":[\"Kontext\"],\"xGVfLh\":[\"Weiter\"],\"RvVi9c\":[\"Mit E-Mail fortfahren\"],\"oZyG4C\":[\"Mit Google fortfahren\"],\"ztoybH\":[\"Mit Microsoft fortfahren\"],\"CcGOj+\":[\"Copilot\"],\"7eVkEH\":[\"Einladungslink kopieren\"],\"Ej5euX\":[\"Diesen Schlüssel kopieren, da er nicht mehr sichtbar sein wird\"],\"wBMjJ2\":[\"Zählen\"],\"EkZfen\":[\"Alle zählen\"],\"vQJINq\":[\"Leere zählen\"],\"DzRsDJ\":[\"Nicht leere zählen\"],\"9FZBbf\":[\"Eindeutige Werte zählen\"],\"zNoOC2\":[\"Erstellen Sie einen Workflow und kehren Sie hierher zurück, um die Versionen anzuzeigen\"],\"uXGLuq\":[\"API-Schlüssel erstellen\"],\"d0DCww\":[\"Neuen Datensatz erstellen\"],\"dkAPxi\":[\"Webhook erstellen\"],\"8skTDV\":[\"Benutzerdefinierte Objekte\"],\"qt+EaC\":[\"Passen Sie die verfügbaren Felder in den \",[\"objectLabelSingular\"],\"-Ansichten an.\"],\"CMhr4u\":[\"Domäne anpassen\"],\"bCJa9l\":[\"Sicherheit des Arbeitsbereichs anpassen\"],\"Zz6Cxn\":[\"Gefahrenzone\"],\"5cNMFz\":[\"Datenmodell\"],\"r+cVRP\":[\"Datentyp\"],\"mYGY3B\":[\"Datum\"],\"Ud9zHv\":[\"Datum und Uhrzeit\"],\"5y3O+A\":[\"Deaktivieren\"],\"qk4i22\":[\"\\\"Objektbezeichnungen und API-Namen synchronisieren\\\" deaktivieren, um einen benutzerdefinierten API-Namen festzulegen\"],\"gexAq8\":[\"Dieses Feld deaktivieren\"],\"4tpC8V\":[\"Workflow deaktivieren\"],\"Y2ImVJ\":[\"Namen und Beschreibung des Objekts definieren\"],\"cnGeoo\":[\"Löschen\"],\"ZDGm40\":[\"Konto löschen\"],\"gAz0S5\":[\"Konto und alle zugehörigen Daten löschen\"],\"hGfWDm\":[\"API-Schlüssel löschen\"],\"4dpwsE\":[\"Datensatz löschen\"],\"kf0A63\":[\"Datensätze löschen\"],\"T6S2Ns\":[\"Diese Integration löschen\"],\"snMaH4\":[\"Webhook löschen\"],\"kYu0eF\":[\"Arbeitsbereich löschen\"],\"mk2Ygs\":[\"Gesamten Arbeitsbereich löschen\"],\"Cko536\":[\"Absteigend\"],\"Nu4oKW\":[\"Beschreibung\"],\"2xxBws\":[\"Zerstören\"],\"n+SX4g\":[\"Entwickler\"],\"zAg2B9\":[\"Entwurf verwerfen\"],\"i66xz9\":[\"Als relatives Datum anzeigen\"],\"EoKe5U\":[\"Domäne\"],\"QVVmxi\":[\"Z.B. Backoffice-Integration\"],\"tOkc8o\":[\"Früheste\"],\"JTbQuO\":[\"Frühestes Datum\"],\"v+uKyy\":[\"Abrechnungsintervall bearbeiten\"],\"h2KoTu\":[\"Zahlungsmethode bearbeiten, Rechnungen einsehen und mehr\"],\"6o1M/Q\":[\"Bearbeiten Sie den Namen Ihrer Subdomain oder legen Sie eine benutzerdefinierte Domäne fest.\"],\"O3oNi5\":[\"E-Mail\"],\"lfQsvW\":[\"E-Mail-Integration\"],\"QT/Wo7\":[\"E-Mail oder Domain ist bereits in der Blockliste\"],\"BXEcos\":[\"E-Mails\"],\"eXoH4Q\":[\"Mitarbeiter\"],\"gqv5ZL\":[\"Mitarbeiter\"],\"N2S1rs\":[\"Leer\"],\"T3juzf\":[\"Endpunkt-URL\"],\"lYGfRP\":[\"Englisch\"],\"/bfFKe\":[\"Genießen Sie eine \",[\"withCreditCardTrialPeriodDuration\"],\"-tägige kostenlose Testphase\"],\"GpB8YV\":[\"Unternehmen\"],\"c3qGJX\":[\"Fehler beim Löschen des API-Schlüssels: \",[\"err\"]],\"bj7nh3\":[\"Fehler beim Regenerieren des API-Schlüssels: \",[\"err\"]],\"VSQxWH\":[\"Fehler beim Wechseln des Abonnements \",[\"to\"],\".\"],\"JLxMta\":[\"Erstellen Sie Webhook-Endpunkte für Benachrichtigungen über asynchrone Ereignisse.\"],\"cIgBjB\":[\"Die folgenden Personen und Domains von der E-Mail-Synchronisierung ausschließen\"],\"fV7V51\":[\"Vorhandene Objekte\"],\"IZ4o2e\":[\"Einstellungen verlassen\"],\"tXGQvS\":[\"Der ausgewählte Knoten sollte ein Erstellungs-Schrittknoten sein.\"],\"bKBhgb\":[\"Erfahrung\"],\"LxRNPw\":[\"Ablauf\"],\"SkXfL0\":[\"Ablaufdatum\"],\"i9qiyR\":[\"Läuft ab in\"],\"GS+Mus\":[\"Exportieren\"],\"ep2rbf\":[\"Datensätze exportieren\"],\"q46CjD\":[\"Als PDF exportieren\"],\"DaGxE0\":[\"Ansicht exportieren\"],\"X9kySA\":[\"Favoriten\"],\"zXgopL\":[\"Feldtyp\"],\"vF68cg\":[\"Felder\"],\"3w/aqw\":[\"Felderanzahl\"],\"o7J4JM\":[\"Filter\"],\"cSev+j\":[\"Filter\"],\"glx6on\":[\"Passwort vergessen?\"],\"nLC6tu\":[\"Französisch\"],\"aTieE0\":[\"von monatlich zu jährlich\"],\"K04lE5\":[\"von jährlich zu monatlich\"],\"scmRyR\":[\"Vollzugriff\"],\"xANKBj\":[\"Funktionen\"],\"Weq9zb\":[\"Allgemein\"],\"DDcvSo\":[\"Deutsch\"],\"NXEW3h\":[\"Holen Sie das Beste aus Ihrem Arbeitsbereich heraus, indem Sie Ihr Team einladen.\"],\"zSGbaR\":[\"Abonnement abschließen\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Gewähren Sie dem Twenty-Support vorübergehend Zugang zu Ihrem Arbeitsbereich, damit wir Probleme beheben oder Inhalte in Ihrem Namen wiederherstellen können. Sie können den Zugriff jederzeit widerrufen.\"],\"vLyv1R\":[\"Ausblenden\"],\"XTWO+W\":[\"Symbol und Name\"],\"sJGljQ\":[\"Kennung\"],\"j843N3\":[\"Wenn Sie diesen Schlüssel verloren haben, können Sie ihn neu generieren, aber beachten Sie, dass jedes Skript, das diesen Schlüssel verwendet, aktualisiert werden muss. Bitte geben Sie zur Bestätigung \\\"\",[\"confirmationValue\"],\"\\\" ein.\"],\"NoNwIX\":[\"Inaktiv\"],\"pZ/USH\":[\"Indizes\"],\"JE2tjr\":[\"Die Eingabe muss im CamelCase-Format sein und darf nicht mit einer Zahl beginnen\"],\"AwUsnG\":[\"Instanzen\"],\"nbfdhU\":[\"Integrationen\"],\"NtFk/Z\":[\"Ungültiger Authentifizierungsanbieter\"],\"B2Tpo0\":[\"Ungültige E-Mail\"],\"/m52AE\":[\"Ungültige E-Mail oder Domain\"],\"QdoUFL\":[\"Ungültige Formularwerte\"],\"0M8+El\":[\"Per E-Mail einladen\"],\"PWIq/W\":[\"Per Link einladen\"],\"3athPG\":[\"Per Link einladen\"],\"5IfmKA\":[\"Einladungslink an E-Mail-Adressen gesendet\"],\"d+Y+rP\":[\"Laden Sie Ihr Team ein\"],\"Lj7sBL\":[\"Italienisch\"],\"dFtidv\":[\"Japanisch\"],\"h6S9Yz\":[\"Koreanisch\"],\"zrpwCd\":[\"Labor\"],\"vXIe7J\":[\"Sprache\"],\"wL3cK8\":[\"Neueste\"],\"Kcjbmz\":[\"Neuester Termin\"],\"pQjjYo\":[\"Link in die Zwischenablage kopiert\"],\"FgAxTj\":[\"Abmelden\"],\"nOhz3x\":[\"Abmelden\"],\"T6YjCk\":[\"Mitglieder verwalten\"],\"4cjU2u\":[\"Verwalten Sie hier die Mitglieder Ihres Bereichs\"],\"FyFNsd\":[\"Verwalten Sie Ihre Internetkonten.\"],\"36kYu0\":[\"Abonnement verwalten\"],\"3Sdni6\":[\"Als erledigt markieren\"],\"CK1KXz\":[\"Max\"],\"wlQNTg\":[\"Mitglieder\"],\"eTUF28\":[\"Min\"],\"3Siwmw\":[\"Mehr Optionen\"],\"iSLA/r\":[\"Nach links verschieben\"],\"Ubl2by\":[\"Nach rechts verschieben\"],\"6YtxFj\":[\"Name\"],\"z+6jaZ\":[\"Name Ihres API-Schlüssels\"],\"J7w8lI\":[\"Name Ihres Arbeitsbereichs\"],\"2T8KCk\":[\"Zum nächsten Datensatz navigieren\"],\"veSA19\":[\"Zur nächsten Version navigieren\"],\"ZTEho+\":[\"Zum nächsten Workflow navigieren\"],\"2tw9bo\":[\"Zum vorherigen Datensatz navigieren\"],\"I+Pm5V\":[\"Zur vorherigen Version navigieren\"],\"QVUN3K\":[\"Zum vorherigen Workflow navigieren\"],\"isRobC\":[\"Neu\"],\"Kcr9Fr\":[\"Neues Konto\"],\"o8MyXb\":[\"Neuer Schlüssel\"],\"j313SZ\":[\"Neuer Schlüssel\"],\"hFxdey\":[\"Neues Objekt\"],\"7vhWI8\":[\"Neues Passwort\"],\"BcCzLv\":[\"Neuer Datensatz\"],\"2lmOC5\":[\"Neue Rolle\"],\"U1DAok\":[\"Neuer Webhook\"],\"pwenQu\":[\"Kein verbundenes Konto\"],\"0uWxPM\":[\"Noch keine Workflow-Ausführungen\"],\"AQCvCC\":[\"Noch keine Workflow-Versionen\"],\"4wUkDk\":[\"Nicht leer\"],\"W0i24j\":[\"Objekt\"],\"B3toQF\":[\"Objekte\"],\"KNz3EF\":[\"Abseits der ausgetretenen Pfade\"],\"OV5wZZ\":[\"Geöffnet\"],\"0zpgxV\":[\"Optionen\"],\"BzEFor\":[\"oder\"],\"/IX/7x\":[\"Andere\"],\"boJlGf\":[\"Seite nicht gefunden\"],\"8ZsakT\":[\"Passwort\"],\"BxQ79w\":[\"Das Passwort wurde aktualisiert\"],\"mi6Rel\":[\"Der Link zum Zurücksetzen des Passworts wurde an die E-Mail gesendet\"],\"SrVzRe\":[\"Prozent\"],\"yIK1GU\":[\"Prozent leer\"],\"PWLd4c\":[\"Prozent nicht leer\"],\"Bv3y5w\":[\"Datensatz dauerhaft löschen\"],\"N0+GsR\":[\"Bild\"],\"jEw0Mr\":[\"Bitte geben Sie eine gültige URL ein\"],\"6nsIo3\":[\"Bitte geben Sie \\\"\",[\"confirmationValue\"],\"\\\" ein, um zu bestätigen, dass Sie diesen API-Schlüssel löschen möchten. Beachten Sie, dass jedes Skript, das diesen Schlüssel verwendet, nicht mehr funktioniert.\"],\"mFZTXr\":[\"Bitte geben Sie \",[\"confirmationText\"],\" ein, um zu bestätigen, dass Sie diesen Webhook löschen möchten.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portugiesisch - Brasilien\"],\"xtXHeo\":[\"Portugiesisch - Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Vorschau\"],\"LcET2C\":[\"Datenschutzrichtlinie\"],\"vERlcd\":[\"Profil\"],\"YJgRqq\":[\"Pseudo-Englisch\"],\"ibPuCP\":[\"Dokumentation lesen\"],\"v3xM25\":[\"Erhalten Sie eine E-Mail mit einem Link zur Passwortaktualisierung\"],\"dSCufP\":[\"Datensatz-Auswahl\"],\"vpZcGd\":[\"API-Schlüssel neu generieren\"],\"Mwqo5m\":[\"Schlüssel neu generieren\"],\"D+Mv78\":[\"Schlüssel regenerieren\"],\"5icoS1\":[\"Veröffentlichungen\"],\"t/YqKh\":[\"Entfernen\"],\"T/pF0Z\":[\"Aus Favoriten entfernen\"],\"KbS2K9\":[\"Passwort zurücksetzen\"],\"1IWc1n\":[\"Zurücksetzen auf\"],\"kx0s+n\":[\"Ergebnisse\"],\"5dJK4M\":[\"Rollen\"],\"UX0N2y\":[\"Führen Sie einen Workflow aus und kehren Sie zurück, um die Ausführungen anzuzeigen\"],\"A1taO8\":[\"Suche\"],\"8NBMeZ\":[\"Suche '\",[\"commandMenuSearch\"],\"' mit...\"],\"l1/uy2\":[\"Feld suchen...\"],\"k7kp5/\":[\"Index suchen...\"],\"7taA9j\":[\"Felder suchen\"],\"ofuw3g\":[\"Objekt suchen...\"],\"IMeaSJ\":[\"Datensätze suchen\"],\"a3LDKx\":[\"Sicherheit\"],\"QREcJS\":[\"Aktive Version anzeigen\"],\"OpPn5Z\":[\"Läufe anzeigen\"],\"EtyY4+\":[\"Versionen anzeigen\"],\"lYhPN0\":[\"Versionsverlauf anzeigen\"],\"xraglu\":[\"Wählen Sie die Ereignisse aus, die Sie an diesen Endpunkt senden möchten\"],\"AXTJAW\":[\"Bevorzugte Sprache auswählen\"],\"mjK8F3\":[\"Einladung per E-Mail an Ihr Team senden\"],\"yy5k7a\":[\"Server-Admin-Bereich\"],\"V7fgiB\":[\"E-Mail-Sichtbarkeit festlegen, Blockliste verwalten und mehr.\"],\"cx14rp\":[\"Domainnamen festlegen\"],\"tn41zE\":[\"Subdomainnamen festlegen\"],\"Tz0i8g\":[\"Einstellungen\"],\"Vy9kmk\":[\"Teilen Sie diesen Link, um Benutzer in Ihren Arbeitsbereich einzuladen\"],\"gWk8gY\":[\"Sollte die Änderung einer Feldbezeichnung auch den API-Namen ändern?\"],\"5lWFkC\":[\"Anmelden\"],\"e+RpCP\":[\"Registrieren\"],\"5v3IHX\":[\"Single Sign-On (SSO)\"],\"6Uau97\":[\"Überspringen\"],\"f6Hub0\":[\"Sortieren\"],\"65A04M\":[\"Spanisch\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdomain\"],\"omhc+7\":[\"Subdomain bereits vergeben\"],\"OlC/tU\":[\"Die Subdomain darf nicht länger als 30 Zeichen sein\"],\"ZETwlU\":[\"Die Subdomain darf nicht kürzer als 3 Zeichen sein\"],\"B5jRKH\":[\"Abonnement wurde auf \",[\"to\"],\" umgestellt\"],\"AxQiPW\":[\"Summe\"],\"XYLcNv\":[\"Support\"],\"9yk9d1\":[\"Wechseln von \",[\"from\"]],\"qi74XZ\":[\"Wechseln zu \",[\"to\"]],\"L6Fg36\":[\"Abrechnung auf \",[\"to\"],\" umstellen\"],\"AtzMpB\":[\"Feldbezeichnung und API-Name synchronisieren\"],\"E3AMmw\":[\"Systemeinstellungen - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Systemeinstellungen - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Nutzungsbedingungen\"],\"NnH3pK\":[\"Test\"],\"bU9B27\":[\"Test-Workflow\"],\"2OUtmv\":[\"Die Beschreibung dieses Felds\"],\"VGZYbZ\":[\"Die mit Ihrem Konto verknüpfte E-Mail\"],\"h8mvCd\":[\"Der Name und das Symbol dieses Felds\"],\"L97sPr\":[\"Die gesuchte Seite ist entweder nicht mehr vorhanden oder hat nie existiert. Lassen Sie uns Ihnen helfen, wieder auf den richtigen Weg zu kommen\"],\"uWikAA\":[\"Die Werte dieses Felds\"],\"+69KDk\":[\"Die Werte dieses Felds müssen eindeutig sein\"],\"ynfkhb\":[\"Beim Aktualisieren des Passworts ist ein Fehler aufgetreten.\"],\"PmtLRf\":[\"Es gab ein Problem\"],\"hqCwGc\":[\"Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird dieser Benutzer dauerhaft gelöscht und aus allen seinen Aufgaben entfernt.\"],\"gWGuHC\":[\"Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird Ihr gesamter Arbeitsbereich dauerhaft gelöscht. <0/> Bitte geben Sie zur Bestätigung Ihre E-Mail ein.\"],\"n9nSNJ\":[\"Zeitformat\"],\"aqMzDX\":[\"zu monatlich\"],\"WXXiXO\":[\"zu jährlich\"],\"PiUt3N\":[\"Auslöser-Typ\"],\"IQ5pAL\":[\"Der Auslöser-Typ sollte manuell sein - wenn keine Aufzeichnung(en) ausgewählt ist/sind\"],\"+zy2Nq\":[\"Typ\"],\"U83IeL\":[\"Geben Sie irgendetwas ein\"],\"wSXm5S\":[\"Einzigartig\"],\"GQCXQS\":[\"Unbegrenzte Kontakte\"],\"ONWvwQ\":[\"Hochladen\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Als Entwurf verwenden\"],\"oTTQsc\":[\"Verwenden Sie nur Buchstaben, Zahlen und Bindestriche. Beginnen und enden Sie mit einem Buchstaben oder einer Zahl\"],\"c6uZUV\":[\"Verwenden Sie unsere API oder fügen Sie Ihr erstes \",[\"objectLabel\"],\" manuell hinzu\"],\"7PzzBU\":[\"Benutzer\"],\"IjyOjp\":[\"Benutzer ist nicht eingeloggt\"],\"fXVIZq\":[\"Werte\"],\"KANz0G\":[\"Rechnungsdetails anzeigen\"],\"6n7jtr\":[\"Visualisieren\"],\"id6ein\":[\"Wir unterstützen Ihre quadratischen PNGs, JPEGs und GIFs unter 10MB\"],\"ZS7vYp\":[\"Wir senden POST-Anfragen an diesen Endpunkt für jedes neue Ereignis\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Willkommen bei \",[\"workspaceName\"]],\"C51ilI\":[\"Wann der API-Schlüssel abläuft.\"],\"leUubq\":[\"Wann der Schlüssel deaktiviert wird\"],\"wvyffT\":[\"Workflow kann nicht getestet werden\"],\"pmUArF\":[\"Arbeitsbereich\"],\"VicISP\":[\"Arbeitsbereich löschen\"],\"Q9pNST\":[\"Beschreibung schreiben\"],\"3d1wCB\":[\"ja\"],\"zSkMV0\":[\"Sie werden sofort für das gesamte Jahr belastet.\"],\"XVnj6K\":[\"Ihr Guthaben wird zur Begleichung der monatlichen Rechnungen verwendet.\"],\"9ivpwk\":[\"Ihr Name, wie er angezeigt wird\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Ihr Arbeitsbereich wird deaktiviert\"]}")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 00bce32bf..7d8d75915 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("{\"ROdDR9\":[[\"aggregateLabel\"],\" of \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API Key\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 workflow node executions\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configure field\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"Abort\"],\"uyJsf6\":[\"About\"],\"AeXO77\":[\"Account\"],\"nD0Y+a\":[\"Account Deletion\"],\"bPwFdf\":[\"Accounts\"],\"FQBaXG\":[\"Activate\"],\"tu8A/k\":[\"Activate Workflow\"],\"F6pfE9\":[\"Active\"],\"Mue4oc\":[\"Active API keys created by you or your team.\"],\"m16xKo\":[\"Add\"],\"DpV70M\":[\"Add Field\"],\"dEO3Zx\":[\"Add object\"],\"sgXUv+\":[\"Add SSO Identity Provider\"],\"5+ttxv\":[\"Add to blocklist\"],\"pBsoKL\":[\"Add to favorites\"],\"m2qDV8\":[\"Add your first \",[\"objectLabel\"]],\"vLO+NG\":[\"Added \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"All\"],\"3saA7W\":[\"All (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"All roles\"],\"GMx1K0\":[\"Allow logins through Google's single sign-on functionality.\"],\"dea+zy\":[\"Allow logins through Microsoft's single sign-on functionality.\"],\"wMg43c\":[\"Allow the invitation of new users by sharing an invite link.\"],\"vHeVg5\":[\"Allow users to sign in with an email and password.\"],\"LG4K0m\":[\"An error occurred while updating password\"],\"mJ6m4C\":[\"An optional description\"],\"HZFm5R\":[\"and\"],\"0RqpZr\":[\"API & Webhooks\"],\"yRnk5W\":[\"API Key\"],\"5h8ooz\":[\"API keys\"],\"kAtj+q\":[\"API Name\"],\"aAIQg2\":[\"Appearance\"],\"3iX0kh\":[\"Are you sure that you want to change your billing interval?\"],\"nYD/Cq\":[\"Ascending\"],\"rfYmIr\":[\"Assign roles to specify each member's access permissions\"],\"lxQ+5m\":[\"Assigned to\"],\"H8QGSx\":[\"At least 8 characters long.\"],\"Y7Dx6e\":[\"At least one authentication method must be enabled\"],\"P8fBlG\":[\"Authentication\"],\"yIVrHZ\":[\"Authorize\"],\"3uQmjD\":[\"Average\"],\"Dht9W3\":[\"Back to content\"],\"R+w/Va\":[\"Billing\"],\"K1172m\":[\"Blocklist\"],\"2yl5lQ\":[\"Book a Call\"],\"8Pfllj\":[\"By using Twenty, you agree to the\"],\"PmmvzS\":[\"Calculate\"],\"AjVXBS\":[\"Calendar\"],\"EUpfsd\":[\"Calendars\"],\"dEgA5A\":[\"Cancel\"],\"0TllC8\":[\"Cancel anytime\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"OfzMnb\":[\"Change \",[\"to\"]],\"VhMDMg\":[\"Change Password\"],\"SviKkE\":[\"Chinese — Simplified\"],\"dzb4Ep\":[\"Chinese — Traditional\"],\"JEFFOR\":[\"Choose an object\"],\"KT6rEB\":[\"Choose your provider\"],\"9qP96p\":[\"Choose your Trial\"],\"yz7wBu\":[\"Close\"],\"+zUMwJ\":[\"Configure an SSO connection\"],\"QTNsSm\":[\"Configure and customize your calendar preferences.\"],\"aGwm+D\":[\"Configure how dates are displayed across the app\"],\"Bh4GBD\":[\"Configure your emails and calendar settings.\"],\"D8ATlr\":[\"Connect a new account to your workspace\"],\"Zgi9Fd\":[\"Connect with Google\"],\"IOfqM8\":[\"Connect with Microsoft\"],\"9TzudL\":[\"Connected accounts\"],\"M73whl\":[\"Context\"],\"xGVfLh\":[\"Continue\"],\"RvVi9c\":[\"Continue with Email\"],\"oZyG4C\":[\"Continue with Google\"],\"ztoybH\":[\"Continue with Microsoft\"],\"CcGOj+\":[\"Copilot\"],\"7eVkEH\":[\"Copy invitation link\"],\"Ej5euX\":[\"Copy this key as it will not be visible again\"],\"wBMjJ2\":[\"Count\"],\"EkZfen\":[\"Count all\"],\"vQJINq\":[\"Count empty\"],\"DzRsDJ\":[\"Count not empty\"],\"9FZBbf\":[\"Count unique values\"],\"zNoOC2\":[\"Create a workflow and return here to view its versions\"],\"uXGLuq\":[\"Create API key\"],\"d0DCww\":[\"Create new record\"],\"dkAPxi\":[\"Create Webhook\"],\"8skTDV\":[\"Custom objects\"],\"qt+EaC\":[\"Customise the fields available in the \",[\"objectLabelSingular\"],\" views.\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"Zz6Cxn\":[\"Danger zone\"],\"5cNMFz\":[\"Data model\"],\"r+cVRP\":[\"Data type\"],\"mYGY3B\":[\"Date\"],\"Ud9zHv\":[\"Date and time\"],\"5y3O+A\":[\"Deactivate\"],\"qk4i22\":[\"Deactivate \\\"Synchronize Objects Labels and API Names\\\" to set a custom API name\"],\"gexAq8\":[\"Deactivate this field\"],\"4tpC8V\":[\"Deactivate Workflow\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"cnGeoo\":[\"Delete\"],\"ZDGm40\":[\"Delete account\"],\"gAz0S5\":[\"Delete account and all the associated data\"],\"hGfWDm\":[\"Delete API key\"],\"4dpwsE\":[\"Delete record\"],\"kf0A63\":[\"Delete records\"],\"T6S2Ns\":[\"Delete this integration\"],\"snMaH4\":[\"Delete webhook\"],\"kYu0eF\":[\"Delete workspace\"],\"mk2Ygs\":[\"Delete your whole workspace\"],\"Cko536\":[\"Descending\"],\"Nu4oKW\":[\"Description\"],\"2xxBws\":[\"Destroy\"],\"n+SX4g\":[\"Developers\"],\"zAg2B9\":[\"Discard Draft\"],\"i66xz9\":[\"Display as relative date\"],\"EoKe5U\":[\"Domain\"],\"QVVmxi\":[\"E.g. backoffice integration\"],\"tOkc8o\":[\"Earliest\"],\"JTbQuO\":[\"Earliest date\"],\"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\"],\"lfQsvW\":[\"Email integration\"],\"QT/Wo7\":[\"Email or domain is already in blocklist\"],\"BXEcos\":[\"Emails\"],\"eXoH4Q\":[\"employees\"],\"gqv5ZL\":[\"Employees\"],\"N2S1rs\":[\"Empty\"],\"T3juzf\":[\"Endpoint URL\"],\"lYGfRP\":[\"English\"],\"/bfFKe\":[\"Enjoy a \",[\"withCreditCardTrialPeriodDuration\"],\"-days free trial\"],\"GpB8YV\":[\"Enterprise\"],\"c3qGJX\":[\"Error deleting api key: \",[\"err\"]],\"bj7nh3\":[\"Error regenerating api key: \",[\"err\"]],\"VSQxWH\":[\"Error while switching subscription \",[\"to\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"cIgBjB\":[\"Exclude the following people and domains from my email sync\"],\"fV7V51\":[\"Existing objects\"],\"IZ4o2e\":[\"Exit Settings\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"Experience\"],\"LxRNPw\":[\"Expiration\"],\"SkXfL0\":[\"Expiration Date\"],\"i9qiyR\":[\"Expires in\"],\"GS+Mus\":[\"Export\"],\"ep2rbf\":[\"Export records\"],\"q46CjD\":[\"Export to PDF\"],\"DaGxE0\":[\"Export view\"],\"X9kySA\":[\"Favorites\"],\"zXgopL\":[\"Field type\"],\"vF68cg\":[\"Fields\"],\"3w/aqw\":[\"Fields Count\"],\"o7J4JM\":[\"Filter\"],\"cSev+j\":[\"Filters\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"scmRyR\":[\"Full access\"],\"xANKBj\":[\"Functions\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"German\"],\"NXEW3h\":[\"Get the most out of your workspace by inviting your team.\"],\"zSGbaR\":[\"Get your subscription\"],\"2GT3Hf\":[\"Global\"],\"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.\"],\"vLyv1R\":[\"Hide\"],\"XTWO+W\":[\"Icon and Name\"],\"sJGljQ\":[\"Identifier\"],\"j843N3\":[\"If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\\\"\",[\"confirmationValue\"],\"\\\" to confirm.\"],\"NoNwIX\":[\"Inactive\"],\"pZ/USH\":[\"Indexes\"],\"JE2tjr\":[\"Input must be in camel case and cannot start with a number\"],\"AwUsnG\":[\"Instances\"],\"nbfdhU\":[\"Integrations\"],\"NtFk/Z\":[\"Invalid auth provider\"],\"B2Tpo0\":[\"Invalid email\"],\"/m52AE\":[\"Invalid email or domain\"],\"QdoUFL\":[\"Invalid form values\"],\"0M8+El\":[\"Invite by email\"],\"PWIq/W\":[\"Invite by link\"],\"3athPG\":[\"Invite by Link\"],\"5IfmKA\":[\"Invite link sent to email addresses\"],\"d+Y+rP\":[\"Invite your team\"],\"Lj7sBL\":[\"Italian\"],\"dFtidv\":[\"Japanese\"],\"h6S9Yz\":[\"Korean\"],\"zrpwCd\":[\"Lab\"],\"vXIe7J\":[\"Language\"],\"wL3cK8\":[\"Latest\"],\"Kcjbmz\":[\"Latest date\"],\"pQjjYo\":[\"Link copied to clipboard\"],\"FgAxTj\":[\"Log out\"],\"nOhz3x\":[\"Logout\"],\"T6YjCk\":[\"Manage Members\"],\"4cjU2u\":[\"Manage the members of your space here\"],\"FyFNsd\":[\"Manage your internet accounts.\"],\"36kYu0\":[\"Manage your subscription\"],\"3Sdni6\":[\"Mark as done\"],\"CK1KXz\":[\"Max\"],\"wlQNTg\":[\"Members\"],\"eTUF28\":[\"Min\"],\"3Siwmw\":[\"More options\"],\"iSLA/r\":[\"Move left\"],\"Ubl2by\":[\"Move right\"],\"6YtxFj\":[\"Name\"],\"z+6jaZ\":[\"Name of your API key\"],\"J7w8lI\":[\"Name of your workspace\"],\"2T8KCk\":[\"Navigate to next record\"],\"veSA19\":[\"Navigate to next version\"],\"ZTEho+\":[\"Navigate to next workflow\"],\"2tw9bo\":[\"Navigate to previous record\"],\"I+Pm5V\":[\"Navigate to previous version\"],\"QVUN3K\":[\"Navigate to previous workflow\"],\"isRobC\":[\"New\"],\"Kcr9Fr\":[\"New account\"],\"o8MyXb\":[\"New key\"],\"j313SZ\":[\"New Key\"],\"hFxdey\":[\"New Object\"],\"7vhWI8\":[\"New Password\"],\"BcCzLv\":[\"New record\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"New Webhook\"],\"pwenQu\":[\"No connected account\"],\"0uWxPM\":[\"No workflow runs yet\"],\"AQCvCC\":[\"No workflow versions yet\"],\"4wUkDk\":[\"Not empty\"],\"W0i24j\":[\"Object\"],\"B3toQF\":[\"Objects\"],\"KNz3EF\":[\"Off the beaten path\"],\"OV5wZZ\":[\"Opened\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"/IX/7x\":[\"Other\"],\"boJlGf\":[\"Page Not Found\"],\"8ZsakT\":[\"Password\"],\"BxQ79w\":[\"Password has been updated\"],\"mi6Rel\":[\"Password reset link has been sent to the email\"],\"SrVzRe\":[\"Percent\"],\"yIK1GU\":[\"Percent empty\"],\"PWLd4c\":[\"Percent not empty\"],\"Bv3y5w\":[\"Permanently destroy record\"],\"N0+GsR\":[\"Picture\"],\"jEw0Mr\":[\"Please enter a valid URL\"],\"6nsIo3\":[\"Please type \\\"\",[\"confirmationValue\"],\"\\\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working.\"],\"mFZTXr\":[\"Please type \",[\"confirmationText\"],\" to confirm you want to delete this webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portuguese — Brazil\"],\"xtXHeo\":[\"Portuguese — Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Preview\"],\"LcET2C\":[\"Privacy Policy\"],\"vERlcd\":[\"Profile\"],\"YJgRqq\":[\"Pseudo-English\"],\"ibPuCP\":[\"Read documentation\"],\"v3xM25\":[\"Receive an email containing password update link\"],\"dSCufP\":[\"Record Selection\"],\"vpZcGd\":[\"Regenerate an API key\"],\"Mwqo5m\":[\"Regenerate key\"],\"D+Mv78\":[\"Regenerate Key\"],\"5icoS1\":[\"Releases\"],\"t/YqKh\":[\"Remove\"],\"T/pF0Z\":[\"Remove from favorites\"],\"KbS2K9\":[\"Reset Password\"],\"1IWc1n\":[\"Reset to\"],\"kx0s+n\":[\"Results\"],\"5dJK4M\":[\"Roles\"],\"UX0N2y\":[\"Run a workflow and return here to view its executions\"],\"A1taO8\":[\"Search\"],\"8NBMeZ\":[\"Search '\",[\"commandMenuSearch\"],\"' with...\"],\"l1/uy2\":[\"Search a field...\"],\"k7kp5/\":[\"Search an index...\"],\"7taA9j\":[\"Search fields\"],\"ofuw3g\":[\"Search for an object...\"],\"IMeaSJ\":[\"Search records\"],\"a3LDKx\":[\"Security\"],\"QREcJS\":[\"See active version\"],\"OpPn5Z\":[\"See runs\"],\"EtyY4+\":[\"See versions\"],\"lYhPN0\":[\"See versions history\"],\"xraglu\":[\"Select the events you wish to send to this endpoint\"],\"AXTJAW\":[\"Select your preferred language\"],\"mjK8F3\":[\"Send an invite email to your team\"],\"yy5k7a\":[\"Server Admin Panel\"],\"V7fgiB\":[\"Set email visibility, manage your blocklist and more.\"],\"cx14rp\":[\"Set the name of your domain\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"Tz0i8g\":[\"Settings\"],\"Vy9kmk\":[\"Share this link to invite users to join your workspace\"],\"gWk8gY\":[\"Should changing a field's label also change the API name?\"],\"5lWFkC\":[\"Sign in\"],\"e+RpCP\":[\"Sign up\"],\"5v3IHX\":[\"Single sign-on (SSO)\"],\"6Uau97\":[\"Skip\"],\"f6Hub0\":[\"Sort\"],\"65A04M\":[\"Spanish\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdomain\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"B5jRKH\":[\"Subscription has been switched \",[\"to\"]],\"AxQiPW\":[\"Sum\"],\"XYLcNv\":[\"Support\"],\"9yk9d1\":[\"Switch \",[\"from\"]],\"qi74XZ\":[\"Switch \",[\"to\"]],\"L6Fg36\":[\"Switch billing \",[\"to\"]],\"AtzMpB\":[\"Synchronize Field Label and API Name\"],\"E3AMmw\":[\"System settings - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"System Settings - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Terms of Service\"],\"NnH3pK\":[\"Test\"],\"bU9B27\":[\"Test Workflow\"],\"2OUtmv\":[\"The description of this field\"],\"VGZYbZ\":[\"The email associated to your account\"],\"h8mvCd\":[\"The name and icon of this field\"],\"L97sPr\":[\"The page you're seeking is either gone or never was. Let's get you back on track\"],\"uWikAA\":[\"The values of this field\"],\"+69KDk\":[\"The values of this field must be unique\"],\"ynfkhb\":[\"There was an error while updating password.\"],\"PmtLRf\":[\"There was an issue\"],\"hqCwGc\":[\"This action cannot be undone. This will permanently delete this user and remove them from all their assignments.\"],\"gWGuHC\":[\"This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm.\"],\"n9nSNJ\":[\"Time format\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"PiUt3N\":[\"Trigger Type\"],\"IQ5pAL\":[\"Trigger type should be Manual - when no record(s) are selected\"],\"+zy2Nq\":[\"Type\"],\"U83IeL\":[\"Type anything\"],\"wSXm5S\":[\"Unique\"],\"GQCXQS\":[\"Unlimited contacts\"],\"ONWvwQ\":[\"Upload\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Use as draft\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"c6uZUV\":[\"Use our API or add your first \",[\"objectLabel\"],\" manually\"],\"7PzzBU\":[\"User\"],\"IjyOjp\":[\"User is not logged in\"],\"fXVIZq\":[\"Values\"],\"KANz0G\":[\"View billing details\"],\"6n7jtr\":[\"Visualize\"],\"id6ein\":[\"We support your square PNGs, JPEGs and GIFs under 10MB\"],\"ZS7vYp\":[\"We will send POST requests to this endpoint for every new event\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Welcome to \",[\"workspaceName\"]],\"C51ilI\":[\"When the API key will expire.\"],\"leUubq\":[\"When the key will be disabled\"],\"wvyffT\":[\"Workflow cannot be tested\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Workspace Deletion\"],\"Q9pNST\":[\"Write a description\"],\"3d1wCB\":[\"yes\"],\"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\"],\"YQK8fJ\":[\"Your Workspace\"],\"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("{\"ROdDR9\":[[\"aggregateLabel\"],\" of \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API Key\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 workflow node executions\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configure field\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"Abort\"],\"uyJsf6\":[\"About\"],\"AeXO77\":[\"Account\"],\"nD0Y+a\":[\"Account Deletion\"],\"bPwFdf\":[\"Accounts\"],\"FQBaXG\":[\"Activate\"],\"tu8A/k\":[\"Activate Workflow\"],\"F6pfE9\":[\"Active\"],\"Mue4oc\":[\"Active API keys created by you or your team.\"],\"m16xKo\":[\"Add\"],\"DpV70M\":[\"Add Field\"],\"dEO3Zx\":[\"Add object\"],\"sgXUv+\":[\"Add SSO Identity Provider\"],\"5+ttxv\":[\"Add to blocklist\"],\"pBsoKL\":[\"Add to favorites\"],\"m2qDV8\":[\"Add your first \",[\"objectLabel\"]],\"vLO+NG\":[\"Added \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"All\"],\"3saA7W\":[\"All (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"All roles\"],\"GMx1K0\":[\"Allow logins through Google's single sign-on functionality.\"],\"dea+zy\":[\"Allow logins through Microsoft's single sign-on functionality.\"],\"wMg43c\":[\"Allow the invitation of new users by sharing an invite link.\"],\"vHeVg5\":[\"Allow users to sign in with an email and password.\"],\"LG4K0m\":[\"An error occurred while updating password\"],\"mJ6m4C\":[\"An optional description\"],\"HZFm5R\":[\"and\"],\"0RqpZr\":[\"API & Webhooks\"],\"yRnk5W\":[\"API Key\"],\"5h8ooz\":[\"API keys\"],\"kAtj+q\":[\"API Name\"],\"aAIQg2\":[\"Appearance\"],\"3iX0kh\":[\"Are you sure that you want to change your billing interval?\"],\"nYD/Cq\":[\"Ascending\"],\"rfYmIr\":[\"Assign roles to specify each member's access permissions\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"Assigned to\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"At least 8 characters long.\"],\"Y7Dx6e\":[\"At least one authentication method must be enabled\"],\"P8fBlG\":[\"Authentication\"],\"yIVrHZ\":[\"Authorize\"],\"3uQmjD\":[\"Average\"],\"Dht9W3\":[\"Back to content\"],\"R+w/Va\":[\"Billing\"],\"K1172m\":[\"Blocklist\"],\"2yl5lQ\":[\"Book a Call\"],\"8Pfllj\":[\"By using Twenty, you agree to the\"],\"PmmvzS\":[\"Calculate\"],\"AjVXBS\":[\"Calendar\"],\"EUpfsd\":[\"Calendars\"],\"dEgA5A\":[\"Cancel\"],\"0TllC8\":[\"Cancel anytime\"],\"rRK/Lf\":[\"Cancel Plan\"],\"N6gPiD\":[\"Cancel your subscription\"],\"OfzMnb\":[\"Change \",[\"to\"]],\"VhMDMg\":[\"Change Password\"],\"SviKkE\":[\"Chinese — Simplified\"],\"dzb4Ep\":[\"Chinese — Traditional\"],\"JEFFOR\":[\"Choose an object\"],\"KT6rEB\":[\"Choose your provider\"],\"9qP96p\":[\"Choose your Trial\"],\"yz7wBu\":[\"Close\"],\"+zUMwJ\":[\"Configure an SSO connection\"],\"QTNsSm\":[\"Configure and customize your calendar preferences.\"],\"aGwm+D\":[\"Configure how dates are displayed across the app\"],\"Bh4GBD\":[\"Configure your emails and calendar settings.\"],\"D8ATlr\":[\"Connect a new account to your workspace\"],\"Zgi9Fd\":[\"Connect with Google\"],\"IOfqM8\":[\"Connect with Microsoft\"],\"9TzudL\":[\"Connected accounts\"],\"M73whl\":[\"Context\"],\"xGVfLh\":[\"Continue\"],\"RvVi9c\":[\"Continue with Email\"],\"oZyG4C\":[\"Continue with Google\"],\"ztoybH\":[\"Continue with Microsoft\"],\"CcGOj+\":[\"Copilot\"],\"7eVkEH\":[\"Copy invitation link\"],\"Ej5euX\":[\"Copy this key as it will not be visible again\"],\"wBMjJ2\":[\"Count\"],\"EkZfen\":[\"Count all\"],\"vQJINq\":[\"Count empty\"],\"DzRsDJ\":[\"Count not empty\"],\"9FZBbf\":[\"Count unique values\"],\"zNoOC2\":[\"Create a workflow and return here to view its versions\"],\"uXGLuq\":[\"Create API key\"],\"d0DCww\":[\"Create new record\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"Create Webhook\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"Custom objects\"],\"qt+EaC\":[\"Customise the fields available in the \",[\"objectLabelSingular\"],\" views.\"],\"CMhr4u\":[\"Customize Domain\"],\"bCJa9l\":[\"Customize your workspace security\"],\"Zz6Cxn\":[\"Danger zone\"],\"5cNMFz\":[\"Data model\"],\"r+cVRP\":[\"Data type\"],\"mYGY3B\":[\"Date\"],\"Ud9zHv\":[\"Date and time\"],\"5y3O+A\":[\"Deactivate\"],\"qk4i22\":[\"Deactivate \\\"Synchronize Objects Labels and API Names\\\" to set a custom API name\"],\"gexAq8\":[\"Deactivate this field\"],\"4tpC8V\":[\"Deactivate Workflow\"],\"Y2ImVJ\":[\"Define the name and description of your object\"],\"cnGeoo\":[\"Delete\"],\"ZDGm40\":[\"Delete account\"],\"gAz0S5\":[\"Delete account and all the associated data\"],\"hGfWDm\":[\"Delete API key\"],\"4dpwsE\":[\"Delete record\"],\"kf0A63\":[\"Delete records\"],\"T6S2Ns\":[\"Delete this integration\"],\"snMaH4\":[\"Delete webhook\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"Delete workspace\"],\"mk2Ygs\":[\"Delete your whole workspace\"],\"Cko536\":[\"Descending\"],\"Nu4oKW\":[\"Description\"],\"2xxBws\":[\"Destroy\"],\"n+SX4g\":[\"Developers\"],\"zAg2B9\":[\"Discard Draft\"],\"i66xz9\":[\"Display as relative date\"],\"EoKe5U\":[\"Domain\"],\"QVVmxi\":[\"E.g. backoffice integration\"],\"tOkc8o\":[\"Earliest\"],\"JTbQuO\":[\"Earliest date\"],\"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\"],\"lfQsvW\":[\"Email integration\"],\"QT/Wo7\":[\"Email or domain is already in blocklist\"],\"BXEcos\":[\"Emails\"],\"eXoH4Q\":[\"employees\"],\"gqv5ZL\":[\"Employees\"],\"N2S1rs\":[\"Empty\"],\"T3juzf\":[\"Endpoint URL\"],\"lYGfRP\":[\"English\"],\"/bfFKe\":[\"Enjoy a \",[\"withCreditCardTrialPeriodDuration\"],\"-days free trial\"],\"GpB8YV\":[\"Enterprise\"],\"c3qGJX\":[\"Error deleting api key: \",[\"err\"]],\"bj7nh3\":[\"Error regenerating api key: \",[\"err\"]],\"VSQxWH\":[\"Error while switching subscription \",[\"to\"],\".\"],\"JLxMta\":[\"Establish Webhook endpoints for notifications on asynchronous events.\"],\"cIgBjB\":[\"Exclude the following people and domains from my email sync\"],\"fV7V51\":[\"Existing objects\"],\"IZ4o2e\":[\"Exit Settings\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"Experience\"],\"LxRNPw\":[\"Expiration\"],\"SkXfL0\":[\"Expiration Date\"],\"i9qiyR\":[\"Expires in\"],\"GS+Mus\":[\"Export\"],\"ep2rbf\":[\"Export records\"],\"q46CjD\":[\"Export to PDF\"],\"DaGxE0\":[\"Export view\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"Favorites\"],\"zXgopL\":[\"Field type\"],\"vF68cg\":[\"Fields\"],\"3w/aqw\":[\"Fields Count\"],\"o7J4JM\":[\"Filter\"],\"cSev+j\":[\"Filters\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"Forgot your password?\"],\"nLC6tu\":[\"French\"],\"aTieE0\":[\"from monthly to yearly\"],\"K04lE5\":[\"from yearly to monthly\"],\"scmRyR\":[\"Full access\"],\"xANKBj\":[\"Functions\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"German\"],\"NXEW3h\":[\"Get the most out of your workspace by inviting your team.\"],\"zSGbaR\":[\"Get your subscription\"],\"2GT3Hf\":[\"Global\"],\"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.\"],\"vLyv1R\":[\"Hide\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"Icon and Name\"],\"sJGljQ\":[\"Identifier\"],\"j843N3\":[\"If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\\\"\",[\"confirmationValue\"],\"\\\" to confirm.\"],\"NoNwIX\":[\"Inactive\"],\"pZ/USH\":[\"Indexes\"],\"JE2tjr\":[\"Input must be in camel case and cannot start with a number\"],\"AwUsnG\":[\"Instances\"],\"nbfdhU\":[\"Integrations\"],\"NtFk/Z\":[\"Invalid auth provider\"],\"B2Tpo0\":[\"Invalid email\"],\"/m52AE\":[\"Invalid email or domain\"],\"QdoUFL\":[\"Invalid form values\"],\"0M8+El\":[\"Invite by email\"],\"PWIq/W\":[\"Invite by link\"],\"3athPG\":[\"Invite by Link\"],\"5IfmKA\":[\"Invite link sent to email addresses\"],\"d+Y+rP\":[\"Invite your team\"],\"Lj7sBL\":[\"Italian\"],\"dFtidv\":[\"Japanese\"],\"h6S9Yz\":[\"Korean\"],\"zrpwCd\":[\"Lab\"],\"vXIe7J\":[\"Language\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"Latest\"],\"Kcjbmz\":[\"Latest date\"],\"pQjjYo\":[\"Link copied to clipboard\"],\"FgAxTj\":[\"Log out\"],\"nOhz3x\":[\"Logout\"],\"T6YjCk\":[\"Manage Members\"],\"4cjU2u\":[\"Manage the members of your space here\"],\"FyFNsd\":[\"Manage your internet accounts.\"],\"36kYu0\":[\"Manage your subscription\"],\"3Sdni6\":[\"Mark as done\"],\"CK1KXz\":[\"Max\"],\"wlQNTg\":[\"Members\"],\"eTUF28\":[\"Min\"],\"3Siwmw\":[\"More options\"],\"iSLA/r\":[\"Move left\"],\"Ubl2by\":[\"Move right\"],\"6YtxFj\":[\"Name\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"Name of your API key\"],\"J7w8lI\":[\"Name of your workspace\"],\"2T8KCk\":[\"Navigate to next record\"],\"veSA19\":[\"Navigate to next version\"],\"ZTEho+\":[\"Navigate to next workflow\"],\"2tw9bo\":[\"Navigate to previous record\"],\"I+Pm5V\":[\"Navigate to previous version\"],\"QVUN3K\":[\"Navigate to previous workflow\"],\"isRobC\":[\"New\"],\"Kcr9Fr\":[\"New account\"],\"o8MyXb\":[\"New key\"],\"j313SZ\":[\"New Key\"],\"hFxdey\":[\"New Object\"],\"7vhWI8\":[\"New Password\"],\"BcCzLv\":[\"New record\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"New Webhook\"],\"pwenQu\":[\"No connected account\"],\"0uWxPM\":[\"No workflow runs yet\"],\"AQCvCC\":[\"No workflow versions yet\"],\"4wUkDk\":[\"Not empty\"],\"W0i24j\":[\"Object\"],\"B3toQF\":[\"Objects\"],\"KNz3EF\":[\"Off the beaten path\"],\"OV5wZZ\":[\"Opened\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"or\"],\"/IX/7x\":[\"Other\"],\"boJlGf\":[\"Page Not Found\"],\"8ZsakT\":[\"Password\"],\"BxQ79w\":[\"Password has been updated\"],\"mi6Rel\":[\"Password reset link has been sent to the email\"],\"SrVzRe\":[\"Percent\"],\"yIK1GU\":[\"Percent empty\"],\"PWLd4c\":[\"Percent not empty\"],\"Bv3y5w\":[\"Permanently destroy record\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"Picture\"],\"jEw0Mr\":[\"Please enter a valid URL\"],\"6nsIo3\":[\"Please type \\\"\",[\"confirmationValue\"],\"\\\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working.\"],\"mFZTXr\":[\"Please type \",[\"confirmationText\"],\" to confirm you want to delete this webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portuguese — Brazil\"],\"xtXHeo\":[\"Portuguese — Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Preview\"],\"LcET2C\":[\"Privacy Policy\"],\"vERlcd\":[\"Profile\"],\"YJgRqq\":[\"Pseudo-English\"],\"ibPuCP\":[\"Read documentation\"],\"v3xM25\":[\"Receive an email containing password update link\"],\"dSCufP\":[\"Record Selection\"],\"vpZcGd\":[\"Regenerate an API key\"],\"Mwqo5m\":[\"Regenerate key\"],\"D+Mv78\":[\"Regenerate Key\"],\"5icoS1\":[\"Releases\"],\"t/YqKh\":[\"Remove\"],\"T/pF0Z\":[\"Remove from favorites\"],\"KbS2K9\":[\"Reset Password\"],\"1IWc1n\":[\"Reset to\"],\"kx0s+n\":[\"Results\"],\"5dJK4M\":[\"Roles\"],\"UX0N2y\":[\"Run a workflow and return here to view its executions\"],\"A1taO8\":[\"Search\"],\"8NBMeZ\":[\"Search '\",[\"commandMenuSearch\"],\"' with...\"],\"l1/uy2\":[\"Search a field...\"],\"k7kp5/\":[\"Search an index...\"],\"7taA9j\":[\"Search fields\"],\"ofuw3g\":[\"Search for an object...\"],\"IMeaSJ\":[\"Search records\"],\"a3LDKx\":[\"Security\"],\"QREcJS\":[\"See active version\"],\"OpPn5Z\":[\"See runs\"],\"EtyY4+\":[\"See versions\"],\"lYhPN0\":[\"See versions history\"],\"xraglu\":[\"Select the events you wish to send to this endpoint\"],\"AXTJAW\":[\"Select your preferred language\"],\"mjK8F3\":[\"Send an invite email to your team\"],\"yy5k7a\":[\"Server Admin Panel\"],\"V7fgiB\":[\"Set email visibility, manage your blocklist and more.\"],\"cx14rp\":[\"Set the name of your domain\"],\"tn41zE\":[\"Set the name of your subdomain\"],\"Tz0i8g\":[\"Settings\"],\"Vy9kmk\":[\"Share this link to invite users to join your workspace\"],\"gWk8gY\":[\"Should changing a field's label also change the API name?\"],\"5lWFkC\":[\"Sign in\"],\"e+RpCP\":[\"Sign up\"],\"5v3IHX\":[\"Single sign-on (SSO)\"],\"6Uau97\":[\"Skip\"],\"f6Hub0\":[\"Sort\"],\"65A04M\":[\"Spanish\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdomain\"],\"omhc+7\":[\"Subdomain already taken\"],\"OlC/tU\":[\"Subdomain can not be longer than 30 characters\"],\"ZETwlU\":[\"Subdomain can not be shorter than 3 characters\"],\"B5jRKH\":[\"Subscription has been switched \",[\"to\"]],\"AxQiPW\":[\"Sum\"],\"XYLcNv\":[\"Support\"],\"9yk9d1\":[\"Switch \",[\"from\"]],\"qi74XZ\":[\"Switch \",[\"to\"]],\"L6Fg36\":[\"Switch billing \",[\"to\"]],\"AtzMpB\":[\"Synchronize Field Label and API Name\"],\"E3AMmw\":[\"System settings - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"System Settings - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Terms of Service\"],\"NnH3pK\":[\"Test\"],\"bU9B27\":[\"Test Workflow\"],\"2OUtmv\":[\"The description of this field\"],\"VGZYbZ\":[\"The email associated to your account\"],\"h8mvCd\":[\"The name and icon of this field\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"The page you're seeking is either gone or never was. Let's get you back on track\"],\"uWikAA\":[\"The values of this field\"],\"+69KDk\":[\"The values of this field must be unique\"],\"ynfkhb\":[\"There was an error while updating password.\"],\"PmtLRf\":[\"There was an issue\"],\"hqCwGc\":[\"This action cannot be undone. This will permanently delete this user and remove them from all their assignments.\"],\"gWGuHC\":[\"This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm.\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"Time format\"],\"aqMzDX\":[\"to monthly\"],\"WXXiXO\":[\"to yearly\"],\"PiUt3N\":[\"Trigger Type\"],\"IQ5pAL\":[\"Trigger type should be Manual - when no record(s) are selected\"],\"+zy2Nq\":[\"Type\"],\"U83IeL\":[\"Type anything\"],\"wSXm5S\":[\"Unique\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"Unlimited contacts\"],\"ONWvwQ\":[\"Upload\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Use as draft\"],\"oTTQsc\":[\"Use letter, number and dash only. Start and finish with a letter or a number\"],\"c6uZUV\":[\"Use our API or add your first \",[\"objectLabel\"],\" manually\"],\"7PzzBU\":[\"User\"],\"IjyOjp\":[\"User is not logged in\"],\"fXVIZq\":[\"Values\"],\"KANz0G\":[\"View billing details\"],\"6n7jtr\":[\"Visualize\"],\"id6ein\":[\"We support your square PNGs, JPEGs and GIFs under 10MB\"],\"ZS7vYp\":[\"We will send POST requests to this endpoint for every new event\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Welcome to \",[\"workspaceName\"]],\"C51ilI\":[\"When the API key will expire.\"],\"leUubq\":[\"When the key will be disabled\"],\"wvyffT\":[\"Workflow cannot be tested\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Workspace Deletion\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"Write a description\"],\"3d1wCB\":[\"yes\"],\"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\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Your workspace will be disabled\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/es-ES.ts b/packages/twenty-front/src/locales/generated/es-ES.ts new file mode 100644 index 000000000..ba3e9ae97 --- /dev/null +++ b/packages/twenty-front/src/locales/generated/es-ES.ts @@ -0,0 +1 @@ +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" de \",[\"fieldLabel\"]],\"uogEAL\":[\"Clave API \",[\"apiKeyName\"]],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 ejecuciones de nodos de workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configurar campo\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"Abortar\"],\"uyJsf6\":[\"Acerca de\"],\"AeXO77\":[\"Cuenta\"],\"nD0Y+a\":[\"Eliminación de cuenta\"],\"bPwFdf\":[\"Cuentas\"],\"FQBaXG\":[\"Activar\"],\"tu8A/k\":[\"Activar workflow\"],\"F6pfE9\":[\"Activo\"],\"Mue4oc\":[\"Claves API activas creadas por usted o su equipo.\"],\"m16xKo\":[\"Añadir\"],\"DpV70M\":[\"Añadir campo\"],\"dEO3Zx\":[\"Añadir objeto\"],\"sgXUv+\":[\"Añadir proveedor de identidad SSO\"],\"5+ttxv\":[\"Añadir a la lista de bloqueo\"],\"pBsoKL\":[\"Añadir a favoritos\"],\"m2qDV8\":[\"Añade tu primer \",[\"objectLabel\"]],\"vLO+NG\":[\"Añadido \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Todos\"],\"3saA7W\":[\"Todos (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Todas las funciones\"],\"GMx1K0\":[\"Permitir el inicio de sesión a través de la funcionalidad de inicio de sesión único de Google.\"],\"dea+zy\":[\"Permitir el inicio de sesión a través de la funcionalidad de inicio de sesión único de Microsoft.\"],\"wMg43c\":[\"Permitir la invitación de nuevos usuarios compartiendo un enlace de invitación.\"],\"vHeVg5\":[\"Permitir que los usuarios inicien sesión con un correo electrónico y una contraseña.\"],\"LG4K0m\":[\"Se produjo un error al actualizar la contraseña\"],\"mJ6m4C\":[\"Descripción opcional\"],\"HZFm5R\":[\"y\"],\"0RqpZr\":[\"API y Webhooks\"],\"yRnk5W\":[\"Clave API\"],\"5h8ooz\":[\"Claves API\"],\"kAtj+q\":[\"Nombre API\"],\"aAIQg2\":[\"Apariencia\"],\"3iX0kh\":[\"¿Está seguro de que desea cambiar el intervalo de facturación?\"],\"nYD/Cq\":[\"Ascendente\"],\"rfYmIr\":[\"Asignar funciones para especificar los permisos de acceso de cada miembro\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"Asignado a\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"Al menos 8 caracteres.\"],\"Y7Dx6e\":[\"Al menos un método de autenticación debe estar activado\"],\"P8fBlG\":[\"Autenticación\"],\"yIVrHZ\":[\"Autorizar\"],\"3uQmjD\":[\"Promedio\"],\"Dht9W3\":[\"Volver al contenido\"],\"R+w/Va\":[\"Facturación\"],\"K1172m\":[\"Lista de bloqueo\"],\"2yl5lQ\":[\"Reservar una llamada\"],\"8Pfllj\":[\"Al utilizar Twenty, aceptas la\"],\"PmmvzS\":[\"Calcular\"],\"AjVXBS\":[\"Calendario\"],\"EUpfsd\":[\"Calendarios\"],\"dEgA5A\":[\"Cancelar\"],\"0TllC8\":[\"Cancelar en cualquier momento\"],\"rRK/Lf\":[\"Cancelar plan\"],\"N6gPiD\":[\"Cancelar su suscripción\"],\"OfzMnb\":[\"Cambiar a \",[\"to\"]],\"VhMDMg\":[\"Cambiar contraseña\"],\"SviKkE\":[\"Chino simplificado\"],\"dzb4Ep\":[\"Chino tradicional\"],\"JEFFOR\":[\"Elija un objeto\"],\"KT6rEB\":[\"Elija su proveedor\"],\"9qP96p\":[\"Elija su prueba\"],\"yz7wBu\":[\"Cerrar\"],\"+zUMwJ\":[\"Configurar una conexión SSO\"],\"QTNsSm\":[\"Configura y personaliza tus preferencias de calendario.\"],\"aGwm+D\":[\"Configurar cómo se muestran las fechas en la aplicación\"],\"Bh4GBD\":[\"Configura tus correos electrónicos y calendario.\"],\"D8ATlr\":[\"Conectar una nueva cuenta a su espacio de trabajo\"],\"Zgi9Fd\":[\"Conectar con Google\"],\"IOfqM8\":[\"Conectar con Microsoft\"],\"9TzudL\":[\"Cuentas conectadas\"],\"M73whl\":[\"Contexto\"],\"xGVfLh\":[\"Continuar\"],\"RvVi9c\":[\"Continuar con el correo electrónico\"],\"oZyG4C\":[\"Continuar con Google\"],\"ztoybH\":[\"Continuar con Microsoft\"],\"CcGOj+\":[\"Copiloto\"],\"7eVkEH\":[\"Copiar enlace de invitación\"],\"Ej5euX\":[\"Copie esta clave ya que no será visible de nuevo\"],\"wBMjJ2\":[\"Cuenta\"],\"EkZfen\":[\"Contar todo\"],\"vQJINq\":[\"Contar vacíos\"],\"DzRsDJ\":[\"Contar no vacíos\"],\"9FZBbf\":[\"Contar valores únicos\"],\"zNoOC2\":[\"Cree un workflow y vuelva aquí para ver sus versiones\"],\"uXGLuq\":[\"Crear clave API\"],\"d0DCww\":[\"Crear nuevo registro\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"Crear Webhook\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"Objetos personalizados\"],\"qt+EaC\":[\"Personalice los campos disponibles en las vistas de \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personalizar dominio\"],\"bCJa9l\":[\"Personalice la seguridad de su espacio de trabajo\"],\"Zz6Cxn\":[\"Zona de peligro\"],\"5cNMFz\":[\"Modelo de datos\"],\"r+cVRP\":[\"Tipo de datos\"],\"mYGY3B\":[\"Fecha\"],\"Ud9zHv\":[\"Fecha y hora\"],\"5y3O+A\":[\"Desactivar\"],\"qk4i22\":[\"Desactive \\\"Sincronizar etiquetas de objetos y nombres de API\\\" para establecer un nombre de API personalizado\"],\"gexAq8\":[\"Desactivar este campo\"],\"4tpC8V\":[\"Desactivar workflow\"],\"Y2ImVJ\":[\"Defina el nombre y la descripción de su objeto\"],\"cnGeoo\":[\"Eliminar\"],\"ZDGm40\":[\"Eliminar cuenta\"],\"gAz0S5\":[\"Eliminar la cuenta y todos los datos asociados\"],\"hGfWDm\":[\"Eliminar clave API\"],\"4dpwsE\":[\"Eliminar registro\"],\"kf0A63\":[\"Eliminar registros\"],\"T6S2Ns\":[\"Eliminar esta integración\"],\"snMaH4\":[\"Eliminar webhook\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"Eliminar espacio de trabajo\"],\"mk2Ygs\":[\"Eliminar todo el espacio de trabajo\"],\"Cko536\":[\"Descendente\"],\"Nu4oKW\":[\"Descripción\"],\"2xxBws\":[\"Destruir\"],\"n+SX4g\":[\"Desarrolladores\"],\"zAg2B9\":[\"Descartar borrador\"],\"i66xz9\":[\"Mostrar como fecha relativa\"],\"EoKe5U\":[\"Dominio\"],\"QVVmxi\":[\"Ej. integración de backoffice\"],\"tOkc8o\":[\"Más antiguo\"],\"JTbQuO\":[\"Fecha más temprana\"],\"v+uKyy\":[\"Editar el intervalo de facturación\"],\"h2KoTu\":[\"Editar la forma de pago, ver sus facturas y más\"],\"6o1M/Q\":[\"Edite el nombre de su subdominio o establezca un dominio personalizado.\"],\"O3oNi5\":[\"Correo electrónico\"],\"lfQsvW\":[\"Integración de correo electrónico\"],\"QT/Wo7\":[\"El correo electrónico o el dominio ya están en la lista de bloqueo\"],\"BXEcos\":[\"Correos electrónicos\"],\"eXoH4Q\":[\"empleados\"],\"gqv5ZL\":[\"Empleados\"],\"N2S1rs\":[\"Vacío\"],\"T3juzf\":[\"URL del endpoint\"],\"lYGfRP\":[\"Inglés\"],\"/bfFKe\":[\"Disfrute de \",[\"withCreditCardTrialPeriodDuration\"],\" días de prueba gratis\"],\"GpB8YV\":[\"Empresa\"],\"c3qGJX\":[\"Error al eliminar la clave API: \",[\"err\"]],\"bj7nh3\":[\"Error al regenerar la clave API: \",[\"err\"]],\"VSQxWH\":[\"Error al cambiar la suscripción \",[\"to\"],\".\"],\"JLxMta\":[\"Establezca endpoints de Webhook para notificaciones de eventos asincrónicos.\"],\"cIgBjB\":[\"Excluir a las siguientes personas y dominios de mi sincronización de correo\"],\"fV7V51\":[\"Objetos existentes\"],\"IZ4o2e\":[\"Salir de Configuración\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"Experiencia\"],\"LxRNPw\":[\"Caducidad\"],\"SkXfL0\":[\"Fecha de caducidad\"],\"i9qiyR\":[\"Expira en\"],\"GS+Mus\":[\"Exportar\"],\"ep2rbf\":[\"Exportar registros\"],\"q46CjD\":[\"Exportar a PDF\"],\"DaGxE0\":[\"Exportar vista\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"Favoritos\"],\"zXgopL\":[\"Tipo de campo\"],\"vF68cg\":[\"Campos\"],\"3w/aqw\":[\"Recuento de campos\"],\"o7J4JM\":[\"Filtro\"],\"cSev+j\":[\"Filtros\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"¿Olvidó su contraseña?\"],\"nLC6tu\":[\"Francés\"],\"aTieE0\":[\"de mensual a anual\"],\"K04lE5\":[\"de anual a mensual\"],\"scmRyR\":[\"Acceso total\"],\"xANKBj\":[\"Funciones\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"Alemán\"],\"NXEW3h\":[\"Aproveche al máximo su espacio de trabajo invitando a su equipo.\"],\"zSGbaR\":[\"Obtenga su suscripción\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Conceda al soporte de Twenty acceso temporal a su espacio de trabajo para que podamos solucionar problemas o recuperar contenido en su nombre. Puede revocar el acceso en cualquier momento.\"],\"vLyv1R\":[\"Ocultar\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"Icono y Nombre\"],\"sJGljQ\":[\"Identificador\"],\"j843N3\":[\"Si ha perdido esta clave, puede regenerarla, pero tenga en cuenta que cualquier script que utilice esta clave deberá ser actualizado. Escriba \\\"\",[\"confirmationValue\"],\"\\\" para confirmar.\"],\"NoNwIX\":[\"Inactivo\"],\"pZ/USH\":[\"Índices\"],\"JE2tjr\":[\"La entrada debe estar en camel case y no puede comenzar con un número\"],\"AwUsnG\":[\"Instancias\"],\"nbfdhU\":[\"Integraciones\"],\"NtFk/Z\":[\"Proveedor de autenticación no válido\"],\"B2Tpo0\":[\"Correo electrónico no válido\"],\"/m52AE\":[\"Correo electrónico o dominio no válido\"],\"QdoUFL\":[\"Valores de formulario no válidos\"],\"0M8+El\":[\"Invitar por correo electrónico\"],\"PWIq/W\":[\"Invitar por enlace\"],\"3athPG\":[\"Invitar por enlace\"],\"5IfmKA\":[\"Enlace de invitación enviado a las direcciones de correo electrónico\"],\"d+Y+rP\":[\"Invite a su equipo\"],\"Lj7sBL\":[\"Italiano\"],\"dFtidv\":[\"Japonés\"],\"h6S9Yz\":[\"Coreano\"],\"zrpwCd\":[\"Laboratorio\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"Último\"],\"Kcjbmz\":[\"Última fecha\"],\"pQjjYo\":[\"Enlace copiado al portapapeles\"],\"FgAxTj\":[\"Cerrar sesión\"],\"nOhz3x\":[\"Cerrar sesión\"],\"T6YjCk\":[\"Gestionar miembros\"],\"4cjU2u\":[\"Gestione aquí los miembros de su espacio\"],\"FyFNsd\":[\"Gestione sus cuentas de internet.\"],\"36kYu0\":[\"Gestione su suscripción\"],\"3Sdni6\":[\"Marcar como hecho\"],\"CK1KXz\":[\"Máx\"],\"wlQNTg\":[\"Miembros\"],\"eTUF28\":[\"Mín\"],\"3Siwmw\":[\"Más opciones\"],\"iSLA/r\":[\"Mover a la izquierda\"],\"Ubl2by\":[\"Mover a la derecha\"],\"6YtxFj\":[\"Nombre\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"Nombre de su clave API\"],\"J7w8lI\":[\"Nombre de su espacio de trabajo\"],\"2T8KCk\":[\"Navegar al siguiente registro\"],\"veSA19\":[\"Navegar a la siguiente versión\"],\"ZTEho+\":[\"Navegar al siguiente flujo de trabajo\"],\"2tw9bo\":[\"Navegar al registro anterior\"],\"I+Pm5V\":[\"Navegar a la versión anterior\"],\"QVUN3K\":[\"Navegar al flujo de trabajo anterior\"],\"isRobC\":[\"Nuevo\"],\"Kcr9Fr\":[\"Nueva cuenta\"],\"o8MyXb\":[\"Nueva clave\"],\"j313SZ\":[\"Nueva clave\"],\"hFxdey\":[\"Nuevo objeto\"],\"7vhWI8\":[\"Nueva contraseña\"],\"BcCzLv\":[\"Nuevo registro\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"Nuevo Webhook\"],\"pwenQu\":[\"No hay cuenta conectada\"],\"0uWxPM\":[\"Aún no hay ejecuciones de flujo de trabajo\"],\"AQCvCC\":[\"Aún no hay versiones de flujo de trabajo\"],\"4wUkDk\":[\"No vacío\"],\"W0i24j\":[\"Objeto\"],\"B3toQF\":[\"Objetos\"],\"KNz3EF\":[\"Fuera del camino trillado\"],\"OV5wZZ\":[\"Abierto\"],\"0zpgxV\":[\"Opciones\"],\"BzEFor\":[\"o\"],\"/IX/7x\":[\"Otros\"],\"boJlGf\":[\"Página no encontrada\"],\"8ZsakT\":[\"Contraseña\"],\"BxQ79w\":[\"La contraseña ha sido actualizada\"],\"mi6Rel\":[\"El enlace de restablecimiento de contraseña ha sido enviado al correo electrónico\"],\"SrVzRe\":[\"Porcentaje\"],\"yIK1GU\":[\"Porcentaje vacío\"],\"PWLd4c\":[\"Porcentaje no vacío\"],\"Bv3y5w\":[\"Destruir registro permanentemente\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"Foto\"],\"jEw0Mr\":[\"Por favor, introduzca una URL válida\"],\"6nsIo3\":[\"Escriba \\\"\",[\"confirmationValue\"],\"\\\" para confirmar que desea eliminar esta clave API. Tenga en cuenta que cualquier script que utilice esta clave dejará de funcionar.\"],\"mFZTXr\":[\"Por favor, escriba \",[\"confirmationText\"],\" para confirmar que desea eliminar este webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portugués - Brasil\"],\"xtXHeo\":[\"Portugués - Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Vista previa\"],\"LcET2C\":[\"Política de privacidad\"],\"vERlcd\":[\"Perfil\"],\"YJgRqq\":[\"Pseudoinglés\"],\"ibPuCP\":[\"Leer documentación\"],\"v3xM25\":[\"Recibir un correo electrónico con un enlace para actualizar la contraseña\"],\"dSCufP\":[\"Selección de registros\"],\"vpZcGd\":[\"Regenerar una clave API\"],\"Mwqo5m\":[\"Regenerar clave\"],\"D+Mv78\":[\"Regenerar clave\"],\"5icoS1\":[\"Lanzamientos\"],\"t/YqKh\":[\"Eliminar\"],\"T/pF0Z\":[\"Quitar de favoritos\"],\"KbS2K9\":[\"Restablecer la contraseña\"],\"1IWc1n\":[\"Restablecer a\"],\"kx0s+n\":[\"Resultados\"],\"5dJK4M\":[\"Roles\"],\"UX0N2y\":[\"Ejecuta un workflow y vuelve aquí para ver sus ejecuciones\"],\"A1taO8\":[\"Buscar\"],\"8NBMeZ\":[\"Buscar '\",[\"commandMenuSearch\"],\"' con...\"],\"l1/uy2\":[\"Buscar un campo...\"],\"k7kp5/\":[\"Buscar un índice...\"],\"7taA9j\":[\"Buscar campos\"],\"ofuw3g\":[\"Buscar un objeto...\"],\"IMeaSJ\":[\"Buscar registros\"],\"a3LDKx\":[\"Seguridad\"],\"QREcJS\":[\"Ver versión activa\"],\"OpPn5Z\":[\"Ver ejecuciones\"],\"EtyY4+\":[\"Ver versiones\"],\"lYhPN0\":[\"Ver historial de versiones\"],\"xraglu\":[\"Selecciona los eventos que deseas enviar a este endpoint\"],\"AXTJAW\":[\"Selecciona tu idioma preferido\"],\"mjK8F3\":[\"Enviar una invitación por correo electrónico a tu equipo\"],\"yy5k7a\":[\"Panel de administración del servidor\"],\"V7fgiB\":[\"Configura la visibilidad del correo electrónico, gestiona tu lista de bloqueo y más.\"],\"cx14rp\":[\"Configura el nombre de tu dominio\"],\"tn41zE\":[\"Configura el nombre de tu subdominio\"],\"Tz0i8g\":[\"Configuración\"],\"Vy9kmk\":[\"Comparte este enlace para invitar a los usuarios a unirse a tu espacio de trabajo\"],\"gWk8gY\":[\"¿Debería cambiar también el nombre de la API al cambiar la etiqueta de un campo?\"],\"5lWFkC\":[\"Iniciar sesión\"],\"e+RpCP\":[\"Registrarse\"],\"5v3IHX\":[\"Inicio de sesión único (SSO)\"],\"6Uau97\":[\"Omitir\"],\"f6Hub0\":[\"Ordenar\"],\"65A04M\":[\"Español\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdominio\"],\"omhc+7\":[\"Subdominio ya está en uso\"],\"OlC/tU\":[\"El subdominio no puede tener más de 30 caracteres\"],\"ZETwlU\":[\"El subdominio no puede tener menos de 3 caracteres\"],\"B5jRKH\":[\"La suscripción ha sido cambiada \",[\"to\"]],\"AxQiPW\":[\"Suma\"],\"XYLcNv\":[\"Soporte\"],\"9yk9d1\":[\"Cambiar \",[\"from\"]],\"qi74XZ\":[\"Cambiar \",[\"to\"]],\"L6Fg36\":[\"Cambiar facturación \",[\"to\"]],\"AtzMpB\":[\"Sincronizar etiqueta de campo y nombre de API\"],\"E3AMmw\":[\"Configuración del sistema - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Configuración del sistema - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Términos del servicio\"],\"NnH3pK\":[\"Prueba\"],\"bU9B27\":[\"Probar Workflow\"],\"2OUtmv\":[\"La descripción de este campo\"],\"VGZYbZ\":[\"El correo electrónico asociado a tu cuenta\"],\"h8mvCd\":[\"El nombre e icono de este campo\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"La página que buscas ha desaparecido o nunca existió. Volvamos a la pista\"],\"uWikAA\":[\"Los valores de este campo\"],\"+69KDk\":[\"Los valores de este campo deben ser únicos\"],\"ynfkhb\":[\"Hubo un error al actualizar la contraseña.\"],\"PmtLRf\":[\"Hubo un problema\"],\"hqCwGc\":[\"Esta acción no se puede deshacer. Esto eliminará permanentemente a este usuario y lo eliminará de todas sus asignaciones.\"],\"gWGuHC\":[\"Esta acción no se puede deshacer. Esto eliminará permanentemente todo tu espacio de trabajo. <0/> Escribe tu correo electrónico para confirmar.\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"Formato de hora\"],\"aqMzDX\":[\"a mensual\"],\"WXXiXO\":[\"a anual\"],\"PiUt3N\":[\"Tipo de disparador\"],\"IQ5pAL\":[\"El tipo de disparador debe ser Manual - cuando no se seleccionan registros\"],\"+zy2Nq\":[\"Tipo\"],\"U83IeL\":[\"Escribe cualquier cosa\"],\"wSXm5S\":[\"Único\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"Contactos ilimitados\"],\"ONWvwQ\":[\"Subir\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Usar como borrador\"],\"oTTQsc\":[\"Utiliza solo letras, números y guiones. Empieza y termina con una letra o un número\"],\"c6uZUV\":[\"Utiliza nuestra API o añade tu primer \",[\"objectLabel\"],\" manualmente\"],\"7PzzBU\":[\"Usuario\"],\"IjyOjp\":[\"El usuario no ha iniciado sesión\"],\"fXVIZq\":[\"Valores\"],\"KANz0G\":[\"Ver detalles de facturación\"],\"6n7jtr\":[\"Visualizar\"],\"id6ein\":[\"Admitimos tus PNG, JPEG y GIF cuadrados de menos de 10 MB\"],\"ZS7vYp\":[\"Enviaremos solicitudes POST a este endpoint para cada nuevo evento\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Bienvenido a \",[\"workspaceName\"]],\"C51ilI\":[\"Cuándo caducará la clave API.\"],\"leUubq\":[\"Cuándo se desactivará la clave\"],\"wvyffT\":[\"No se puede probar el workflow\"],\"pmUArF\":[\"Espacio de trabajo\"],\"VicISP\":[\"Eliminación del espacio de trabajo\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"Escribe una descripción\"],\"3d1wCB\":[\"sí\"],\"zSkMV0\":[\"Se te cobrará inmediatamente el año completo.\"],\"XVnj6K\":[\"Tu saldo de crédito se utilizará para pagar las facturas mensuales.\"],\"9ivpwk\":[\"Tu nombre tal y como se mostrará\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Tu espacio de trabajo se desactivará\"]}")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 deleted file mode 100644 index ff490d33f..000000000 --- a/packages/twenty-front/src/locales/generated/es.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" de \",[\"fieldLabel\"]],\"uogEAL\":[\"Clave API \",[\"apiKeyName\"]],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 ejecuciones de nodos de workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configurar campo\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"Abortar\"],\"uyJsf6\":[\"Acerca de\"],\"AeXO77\":[\"Cuenta\"],\"nD0Y+a\":[\"Eliminación de cuenta\"],\"bPwFdf\":[\"Cuentas\"],\"FQBaXG\":[\"Activar\"],\"tu8A/k\":[\"Activar workflow\"],\"F6pfE9\":[\"Activo\"],\"Mue4oc\":[\"Claves API activas creadas por usted o su equipo.\"],\"m16xKo\":[\"Añadir\"],\"DpV70M\":[\"Añadir campo\"],\"dEO3Zx\":[\"Añadir objeto\"],\"sgXUv+\":[\"Añadir proveedor de identidad SSO\"],\"5+ttxv\":[\"Añadir a la lista de bloqueo\"],\"pBsoKL\":[\"Añadir a favoritos\"],\"m2qDV8\":[\"Añade tu primer \",[\"objectLabel\"]],\"vLO+NG\":[\"Añadido \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Todos\"],\"3saA7W\":[\"Todos (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Todas las funciones\"],\"GMx1K0\":[\"Permitir el inicio de sesión a través de la funcionalidad de inicio de sesión único de Google.\"],\"dea+zy\":[\"Permitir el inicio de sesión a través de la funcionalidad de inicio de sesión único de Microsoft.\"],\"wMg43c\":[\"Permitir la invitación de nuevos usuarios compartiendo un enlace de invitación.\"],\"vHeVg5\":[\"Permitir que los usuarios inicien sesión con un correo electrónico y una contraseña.\"],\"LG4K0m\":[\"Se produjo un error al actualizar la contraseña\"],\"mJ6m4C\":[\"Descripción opcional\"],\"HZFm5R\":[\"y\"],\"0RqpZr\":[\"API y Webhooks\"],\"yRnk5W\":[\"Clave API\"],\"5h8ooz\":[\"Claves API\"],\"kAtj+q\":[\"Nombre API\"],\"aAIQg2\":[\"Apariencia\"],\"3iX0kh\":[\"¿Está seguro de que desea cambiar el intervalo de facturación?\"],\"nYD/Cq\":[\"Ascendente\"],\"rfYmIr\":[\"Asignar funciones para especificar los permisos de acceso de cada miembro\"],\"lxQ+5m\":[\"Asignado a\"],\"H8QGSx\":[\"Al menos 8 caracteres.\"],\"Y7Dx6e\":[\"Al menos un método de autenticación debe estar activado\"],\"P8fBlG\":[\"Autenticación\"],\"yIVrHZ\":[\"Autorizar\"],\"3uQmjD\":[\"Promedio\"],\"Dht9W3\":[\"Volver al contenido\"],\"R+w/Va\":[\"Facturación\"],\"K1172m\":[\"Lista de bloqueo\"],\"2yl5lQ\":[\"Reservar una llamada\"],\"8Pfllj\":[\"Al utilizar Twenty, aceptas la\"],\"PmmvzS\":[\"Calcular\"],\"AjVXBS\":[\"Calendario\"],\"EUpfsd\":[\"Calendarios\"],\"dEgA5A\":[\"Cancelar\"],\"0TllC8\":[\"Cancelar en cualquier momento\"],\"rRK/Lf\":[\"Cancelar plan\"],\"N6gPiD\":[\"Cancelar su suscripción\"],\"OfzMnb\":[\"Cambiar a \",[\"to\"]],\"VhMDMg\":[\"Cambiar contraseña\"],\"SviKkE\":[\"Chino simplificado\"],\"dzb4Ep\":[\"Chino tradicional\"],\"JEFFOR\":[\"Elija un objeto\"],\"KT6rEB\":[\"Elija su proveedor\"],\"9qP96p\":[\"Elija su prueba\"],\"yz7wBu\":[\"Cerrar\"],\"+zUMwJ\":[\"Configurar una conexión SSO\"],\"QTNsSm\":[\"Configura y personaliza tus preferencias de calendario.\"],\"aGwm+D\":[\"Configurar cómo se muestran las fechas en la aplicación\"],\"Bh4GBD\":[\"Configura tus correos electrónicos y calendario.\"],\"D8ATlr\":[\"Conectar una nueva cuenta a su espacio de trabajo\"],\"Zgi9Fd\":[\"Conectar con Google\"],\"IOfqM8\":[\"Conectar con Microsoft\"],\"9TzudL\":[\"Cuentas conectadas\"],\"M73whl\":[\"Contexto\"],\"xGVfLh\":[\"Continuar\"],\"RvVi9c\":[\"Continuar con el correo electrónico\"],\"oZyG4C\":[\"Continuar con Google\"],\"ztoybH\":[\"Continuar con Microsoft\"],\"CcGOj+\":[\"Copiloto\"],\"7eVkEH\":[\"Copiar enlace de invitación\"],\"Ej5euX\":[\"Copie esta clave ya que no será visible de nuevo\"],\"wBMjJ2\":[\"Cuenta\"],\"EkZfen\":[\"Contar todo\"],\"vQJINq\":[\"Contar vacíos\"],\"DzRsDJ\":[\"Contar no vacíos\"],\"9FZBbf\":[\"Contar valores únicos\"],\"zNoOC2\":[\"Cree un workflow y vuelva aquí para ver sus versiones\"],\"uXGLuq\":[\"Crear clave API\"],\"d0DCww\":[\"Crear nuevo registro\"],\"dkAPxi\":[\"Crear Webhook\"],\"8skTDV\":[\"Objetos personalizados\"],\"qt+EaC\":[\"Personalice los campos disponibles en las vistas de \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personalizar dominio\"],\"bCJa9l\":[\"Personalice la seguridad de su espacio de trabajo\"],\"Zz6Cxn\":[\"Zona de peligro\"],\"5cNMFz\":[\"Modelo de datos\"],\"r+cVRP\":[\"Tipo de datos\"],\"mYGY3B\":[\"Fecha\"],\"Ud9zHv\":[\"Fecha y hora\"],\"5y3O+A\":[\"Desactivar\"],\"qk4i22\":[\"Desactive \\\"Sincronizar etiquetas de objetos y nombres de API\\\" para establecer un nombre de API personalizado\"],\"gexAq8\":[\"Desactivar este campo\"],\"4tpC8V\":[\"Desactivar workflow\"],\"Y2ImVJ\":[\"Defina el nombre y la descripción de su objeto\"],\"cnGeoo\":[\"Eliminar\"],\"ZDGm40\":[\"Eliminar cuenta\"],\"gAz0S5\":[\"Eliminar la cuenta y todos los datos asociados\"],\"hGfWDm\":[\"Eliminar clave API\"],\"4dpwsE\":[\"Eliminar registro\"],\"kf0A63\":[\"Eliminar registros\"],\"T6S2Ns\":[\"Eliminar esta integración\"],\"snMaH4\":[\"Eliminar webhook\"],\"kYu0eF\":[\"Eliminar espacio de trabajo\"],\"mk2Ygs\":[\"Eliminar todo el espacio de trabajo\"],\"Cko536\":[\"Descendente\"],\"Nu4oKW\":[\"Descripción\"],\"2xxBws\":[\"Destruir\"],\"n+SX4g\":[\"Desarrolladores\"],\"zAg2B9\":[\"Descartar borrador\"],\"i66xz9\":[\"Mostrar como fecha relativa\"],\"EoKe5U\":[\"Dominio\"],\"QVVmxi\":[\"Ej. integración de backoffice\"],\"tOkc8o\":[\"Más antiguo\"],\"JTbQuO\":[\"Fecha más temprana\"],\"v+uKyy\":[\"Editar el intervalo de facturación\"],\"h2KoTu\":[\"Editar la forma de pago, ver sus facturas y más\"],\"6o1M/Q\":[\"Edite el nombre de su subdominio o establezca un dominio personalizado.\"],\"O3oNi5\":[\"Correo electrónico\"],\"lfQsvW\":[\"Integración de correo electrónico\"],\"QT/Wo7\":[\"El correo electrónico o el dominio ya están en la lista de bloqueo\"],\"BXEcos\":[\"Correos electrónicos\"],\"eXoH4Q\":[\"empleados\"],\"gqv5ZL\":[\"Empleados\"],\"N2S1rs\":[\"Vacío\"],\"T3juzf\":[\"URL del endpoint\"],\"lYGfRP\":[\"Inglés\"],\"/bfFKe\":[\"Disfrute de \",[\"withCreditCardTrialPeriodDuration\"],\" días de prueba gratis\"],\"GpB8YV\":[\"Empresa\"],\"c3qGJX\":[\"Error al eliminar la clave API: \",[\"err\"]],\"bj7nh3\":[\"Error al regenerar la clave API: \",[\"err\"]],\"VSQxWH\":[\"Error al cambiar la suscripción \",[\"to\"],\".\"],\"JLxMta\":[\"Establezca endpoints de Webhook para notificaciones de eventos asincrónicos.\"],\"cIgBjB\":[\"Excluir a las siguientes personas y dominios de mi sincronización de correo\"],\"fV7V51\":[\"Objetos existentes\"],\"IZ4o2e\":[\"Salir de Configuración\"],\"tXGQvS\":[\"Se espera que el nodo seleccionado sea un nodo de paso de creación.\"],\"bKBhgb\":[\"Experiencia\"],\"LxRNPw\":[\"Caducidad\"],\"SkXfL0\":[\"Fecha de caducidad\"],\"i9qiyR\":[\"Expira en\"],\"GS+Mus\":[\"Exportar\"],\"ep2rbf\":[\"Exportar registros\"],\"q46CjD\":[\"Exportar a PDF\"],\"DaGxE0\":[\"Exportar vista\"],\"X9kySA\":[\"Favoritos\"],\"zXgopL\":[\"Tipo de campo\"],\"vF68cg\":[\"Campos\"],\"3w/aqw\":[\"Recuento de campos\"],\"o7J4JM\":[\"Filtro\"],\"cSev+j\":[\"Filtros\"],\"glx6on\":[\"¿Olvidó su contraseña?\"],\"nLC6tu\":[\"Francés\"],\"aTieE0\":[\"de mensual a anual\"],\"K04lE5\":[\"de anual a mensual\"],\"scmRyR\":[\"Acceso total\"],\"xANKBj\":[\"Funciones\"],\"Weq9zb\":[\"General\"],\"DDcvSo\":[\"Alemán\"],\"NXEW3h\":[\"Aproveche al máximo su espacio de trabajo invitando a su equipo.\"],\"zSGbaR\":[\"Obtenga su suscripción\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Conceda al soporte de Twenty acceso temporal a su espacio de trabajo para que podamos solucionar problemas o recuperar contenido en su nombre. Puede revocar el acceso en cualquier momento.\"],\"vLyv1R\":[\"Ocultar\"],\"XTWO+W\":[\"Icono y Nombre\"],\"sJGljQ\":[\"Identificador\"],\"j843N3\":[\"Si ha perdido esta clave, puede regenerarla, pero tenga en cuenta que cualquier script que utilice esta clave deberá ser actualizado. Escriba \\\"\",[\"confirmationValue\"],\"\\\" para confirmar.\"],\"NoNwIX\":[\"Inactivo\"],\"pZ/USH\":[\"Índices\"],\"JE2tjr\":[\"La entrada debe estar en camel case y no puede comenzar con un número\"],\"AwUsnG\":[\"Instancias\"],\"nbfdhU\":[\"Integraciones\"],\"NtFk/Z\":[\"Proveedor de autenticación no válido\"],\"B2Tpo0\":[\"Correo electrónico no válido\"],\"/m52AE\":[\"Correo electrónico o dominio no válido\"],\"QdoUFL\":[\"Valores de formulario no válidos\"],\"0M8+El\":[\"Invitar por correo electrónico\"],\"PWIq/W\":[\"Invitar por enlace\"],\"3athPG\":[\"Invitar por enlace\"],\"5IfmKA\":[\"Enlace de invitación enviado a las direcciones de correo electrónico\"],\"d+Y+rP\":[\"Invite a su equipo\"],\"Lj7sBL\":[\"Italiano\"],\"dFtidv\":[\"Japonés\"],\"h6S9Yz\":[\"Coreano\"],\"zrpwCd\":[\"Laboratorio\"],\"vXIe7J\":[\"Idioma\"],\"wL3cK8\":[\"Último\"],\"Kcjbmz\":[\"Última fecha\"],\"pQjjYo\":[\"Enlace copiado al portapapeles\"],\"FgAxTj\":[\"Cerrar sesión\"],\"nOhz3x\":[\"Cerrar sesión\"],\"T6YjCk\":[\"Gestionar miembros\"],\"4cjU2u\":[\"Gestione aquí los miembros de su espacio\"],\"FyFNsd\":[\"Gestione sus cuentas de internet.\"],\"36kYu0\":[\"Gestione su suscripción\"],\"3Sdni6\":[\"Marcar como hecho\"],\"CK1KXz\":[\"Máx\"],\"wlQNTg\":[\"Miembros\"],\"eTUF28\":[\"Mín\"],\"3Siwmw\":[\"Más opciones\"],\"iSLA/r\":[\"Mover a la izquierda\"],\"Ubl2by\":[\"Mover a la derecha\"],\"6YtxFj\":[\"Nombre\"],\"z+6jaZ\":[\"Nombre de su clave API\"],\"J7w8lI\":[\"Nombre de su espacio de trabajo\"],\"2T8KCk\":[\"Navegar al siguiente registro\"],\"veSA19\":[\"Navegar a la siguiente versión\"],\"ZTEho+\":[\"Navegar al siguiente flujo de trabajo\"],\"2tw9bo\":[\"Navegar al registro anterior\"],\"I+Pm5V\":[\"Navegar a la versión anterior\"],\"QVUN3K\":[\"Navegar al flujo de trabajo anterior\"],\"isRobC\":[\"Nuevo\"],\"Kcr9Fr\":[\"Nueva cuenta\"],\"o8MyXb\":[\"Nueva clave\"],\"j313SZ\":[\"Nueva clave\"],\"hFxdey\":[\"Nuevo objeto\"],\"7vhWI8\":[\"Nueva contraseña\"],\"BcCzLv\":[\"Nuevo registro\"],\"2lmOC5\":[\"Nuevo rol\"],\"U1DAok\":[\"Nuevo Webhook\"],\"pwenQu\":[\"No hay cuenta conectada\"],\"0uWxPM\":[\"Aún no hay ejecuciones de flujo de trabajo\"],\"AQCvCC\":[\"Aún no hay versiones de flujo de trabajo\"],\"4wUkDk\":[\"No vacío\"],\"W0i24j\":[\"Objeto\"],\"B3toQF\":[\"Objetos\"],\"KNz3EF\":[\"Fuera del camino trillado\"],\"OV5wZZ\":[\"Abierto\"],\"0zpgxV\":[\"Opciones\"],\"BzEFor\":[\"o\"],\"/IX/7x\":[\"Otros\"],\"boJlGf\":[\"Página no encontrada\"],\"8ZsakT\":[\"Contraseña\"],\"BxQ79w\":[\"La contraseña ha sido actualizada\"],\"mi6Rel\":[\"El enlace de restablecimiento de contraseña ha sido enviado al correo electrónico\"],\"SrVzRe\":[\"Porcentaje\"],\"yIK1GU\":[\"Porcentaje vacío\"],\"PWLd4c\":[\"Porcentaje no vacío\"],\"Bv3y5w\":[\"Destruir registro permanentemente\"],\"N0+GsR\":[\"Foto\"],\"jEw0Mr\":[\"Por favor, introduzca una URL válida\"],\"6nsIo3\":[\"Escriba \\\"\",[\"confirmationValue\"],\"\\\" para confirmar que desea eliminar esta clave API. Tenga en cuenta que cualquier script que utilice esta clave dejará de funcionar.\"],\"mFZTXr\":[\"Por favor, escriba \",[\"confirmationText\"],\" para confirmar que desea eliminar este webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portugués - Brasil\"],\"xtXHeo\":[\"Portugués - Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Vista previa\"],\"LcET2C\":[\"Política de privacidad\"],\"vERlcd\":[\"Perfil\"],\"YJgRqq\":[\"Pseudoinglés\"],\"ibPuCP\":[\"Leer documentación\"],\"v3xM25\":[\"Recibir un correo electrónico con un enlace para actualizar la contraseña\"],\"dSCufP\":[\"Selección de registros\"],\"vpZcGd\":[\"Regenerar una clave API\"],\"Mwqo5m\":[\"Regenerar clave\"],\"D+Mv78\":[\"Regenerar clave\"],\"5icoS1\":[\"Lanzamientos\"],\"t/YqKh\":[\"Eliminar\"],\"T/pF0Z\":[\"Quitar de favoritos\"],\"KbS2K9\":[\"Restablecer la contraseña\"],\"1IWc1n\":[\"Restablecer a\"],\"kx0s+n\":[\"Resultados\"],\"5dJK4M\":[\"Roles\"],\"UX0N2y\":[\"Ejecuta un workflow y vuelve aquí para ver sus ejecuciones\"],\"A1taO8\":[\"Buscar\"],\"8NBMeZ\":[\"Buscar '\",[\"commandMenuSearch\"],\"' con...\"],\"l1/uy2\":[\"Buscar un campo...\"],\"k7kp5/\":[\"Buscar un índice...\"],\"7taA9j\":[\"Buscar campos\"],\"ofuw3g\":[\"Buscar un objeto...\"],\"IMeaSJ\":[\"Buscar registros\"],\"a3LDKx\":[\"Seguridad\"],\"QREcJS\":[\"Ver versión activa\"],\"OpPn5Z\":[\"Ver ejecuciones\"],\"EtyY4+\":[\"Ver versiones\"],\"lYhPN0\":[\"Ver historial de versiones\"],\"xraglu\":[\"Selecciona los eventos que deseas enviar a este endpoint\"],\"AXTJAW\":[\"Selecciona tu idioma preferido\"],\"mjK8F3\":[\"Enviar una invitación por correo electrónico a tu equipo\"],\"yy5k7a\":[\"Panel de administración del servidor\"],\"V7fgiB\":[\"Configura la visibilidad del correo electrónico, gestiona tu lista de bloqueo y más.\"],\"cx14rp\":[\"Configura el nombre de tu dominio\"],\"tn41zE\":[\"Configura el nombre de tu subdominio\"],\"Tz0i8g\":[\"Configuración\"],\"Vy9kmk\":[\"Comparte este enlace para invitar a los usuarios a unirse a tu espacio de trabajo\"],\"gWk8gY\":[\"¿Debería cambiar también el nombre de la API al cambiar la etiqueta de un campo?\"],\"5lWFkC\":[\"Iniciar sesión\"],\"e+RpCP\":[\"Registrarse\"],\"5v3IHX\":[\"Inicio de sesión único (SSO)\"],\"6Uau97\":[\"Omitir\"],\"f6Hub0\":[\"Ordenar\"],\"65A04M\":[\"Español\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdominio\"],\"omhc+7\":[\"Subdominio ya está en uso\"],\"OlC/tU\":[\"El subdominio no puede tener más de 30 caracteres\"],\"ZETwlU\":[\"El subdominio no puede tener menos de 3 caracteres\"],\"B5jRKH\":[\"La suscripción ha sido cambiada \",[\"to\"]],\"AxQiPW\":[\"Suma\"],\"XYLcNv\":[\"Soporte\"],\"9yk9d1\":[\"Cambiar \",[\"from\"]],\"qi74XZ\":[\"Cambiar \",[\"to\"]],\"L6Fg36\":[\"Cambiar facturación \",[\"to\"]],\"AtzMpB\":[\"Sincronizar etiqueta de campo y nombre de API\"],\"E3AMmw\":[\"Configuración del sistema - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Configuración del sistema - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Términos del servicio\"],\"NnH3pK\":[\"Prueba\"],\"bU9B27\":[\"Probar Workflow\"],\"2OUtmv\":[\"La descripción de este campo\"],\"VGZYbZ\":[\"El correo electrónico asociado a tu cuenta\"],\"h8mvCd\":[\"El nombre e icono de este campo\"],\"L97sPr\":[\"La página que buscas ha desaparecido o nunca existió. Volvamos a la pista\"],\"uWikAA\":[\"Los valores de este campo\"],\"+69KDk\":[\"Los valores de este campo deben ser únicos\"],\"ynfkhb\":[\"Hubo un error al actualizar la contraseña.\"],\"PmtLRf\":[\"Hubo un problema\"],\"hqCwGc\":[\"Esta acción no se puede deshacer. Esto eliminará permanentemente a este usuario y lo eliminará de todas sus asignaciones.\"],\"gWGuHC\":[\"Esta acción no se puede deshacer. Esto eliminará permanentemente todo tu espacio de trabajo. <0/> Escribe tu correo electrónico para confirmar.\"],\"n9nSNJ\":[\"Formato de hora\"],\"aqMzDX\":[\"a mensual\"],\"WXXiXO\":[\"a anual\"],\"PiUt3N\":[\"Tipo de disparador\"],\"IQ5pAL\":[\"El tipo de disparador debe ser Manual - cuando no se seleccionan registros\"],\"+zy2Nq\":[\"Tipo\"],\"U83IeL\":[\"Escribe cualquier cosa\"],\"wSXm5S\":[\"Único\"],\"GQCXQS\":[\"Contactos ilimitados\"],\"ONWvwQ\":[\"Subir\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Usar como borrador\"],\"oTTQsc\":[\"Utiliza solo letras, números y guiones. Empieza y termina con una letra o un número\"],\"c6uZUV\":[\"Utiliza nuestra API o añade tu primer \",[\"objectLabel\"],\" manualmente\"],\"7PzzBU\":[\"Usuario\"],\"IjyOjp\":[\"El usuario no ha iniciado sesión\"],\"fXVIZq\":[\"Valores\"],\"KANz0G\":[\"Ver detalles de facturación\"],\"6n7jtr\":[\"Visualizar\"],\"id6ein\":[\"Admitimos tus PNG, JPEG y GIF cuadrados de menos de 10 MB\"],\"ZS7vYp\":[\"Enviaremos solicitudes POST a este endpoint para cada nuevo evento\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Bienvenido a \",[\"workspaceName\"]],\"C51ilI\":[\"Cuándo caducará la clave API.\"],\"leUubq\":[\"Cuándo se desactivará la clave\"],\"wvyffT\":[\"No se puede probar el workflow\"],\"pmUArF\":[\"Espacio de trabajo\"],\"VicISP\":[\"Eliminación del espacio de trabajo\"],\"Q9pNST\":[\"Escribe una descripción\"],\"3d1wCB\":[\"sí\"],\"zSkMV0\":[\"Se te cobrará inmediatamente el año completo.\"],\"XVnj6K\":[\"Tu saldo de crédito se utilizará para pagar las facturas mensuales.\"],\"9ivpwk\":[\"Tu nombre tal y como se mostrará\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Tu espacio de trabajo se desactivará\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/fr-FR.ts b/packages/twenty-front/src/locales/generated/fr-FR.ts new file mode 100644 index 000000000..bab96e8cf --- /dev/null +++ b/packages/twenty-front/src/locales/generated/fr-FR.ts @@ -0,0 +1 @@ +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" de \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" Clé API\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 exécutions de nœuds de workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configurer le champ\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"Un environnement partagé où vous pourrez gérer vos relations clients avec votre équipe.\"],\"ssjjFt\":[\"Annuler\"],\"uyJsf6\":[\"À propos\"],\"AeXO77\":[\"Compte\"],\"nD0Y+a\":[\"Suppression de compte\"],\"bPwFdf\":[\"Comptes\"],\"FQBaXG\":[\"Activer\"],\"tu8A/k\":[\"Activer le workflow\"],\"F6pfE9\":[\"Actif\"],\"Mue4oc\":[\"Clés API actives créées par vous ou votre équipe.\"],\"m16xKo\":[\"Ajouter\"],\"DpV70M\":[\"Ajouter un champ\"],\"dEO3Zx\":[\"Ajouter un objet\"],\"sgXUv+\":[\"Ajouter un fournisseur d'identité SSO\"],\"5+ttxv\":[\"Ajouter à la liste de blocage\"],\"pBsoKL\":[\"Ajouter aux favoris\"],\"m2qDV8\":[\"Ajoutez votre premier \",[\"objectLabel\"]],\"vLO+NG\":[\"Ajouté \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Tous\"],\"3saA7W\":[\"Tous (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Tous les rôles\"],\"GMx1K0\":[\"Autoriser les connexions via l'authentification unique de Google.\"],\"dea+zy\":[\"Autoriser les connexions via l'authentification unique de Microsoft.\"],\"wMg43c\":[\"Permettre l'invitation de nouveaux utilisateurs en partageant un lien d'invitation.\"],\"vHeVg5\":[\"Permettre aux utilisateurs de se connecter avec un courriel et un mot de passe.\"],\"LG4K0m\":[\"Une erreur s'est produite lors de la mise à jour du mot de passe\"],\"mJ6m4C\":[\"Une description facultative\"],\"HZFm5R\":[\"et\"],\"0RqpZr\":[\"API & Webhooks\"],\"yRnk5W\":[\"Clé API\"],\"5h8ooz\":[\"Clés API\"],\"kAtj+q\":[\"Nom de l'API\"],\"aAIQg2\":[\"Apparence\"],\"3iX0kh\":[\"Êtes-vous sûr de vouloir modifier votre intervalle de facturation ?\"],\"nYD/Cq\":[\"Ascendant\"],\"rfYmIr\":[\"Attribuer des rôles pour spécifier les autorisations d'accès de chaque membre\"],\"OItM/o\":[\"Membres assignés\"],\"lxQ+5m\":[\"Attribué à\"],\"0dtKl9\":[\"Affectation\"],\"H8QGSx\":[\"Au moins 8 caractères.\"],\"Y7Dx6e\":[\"Au moins une méthode d'authentification doit être activée\"],\"P8fBlG\":[\"Authentification\"],\"yIVrHZ\":[\"Autoriser\"],\"3uQmjD\":[\"Moyenne\"],\"Dht9W3\":[\"Retour au contenu\"],\"R+w/Va\":[\"Facturation\"],\"K1172m\":[\"Liste de blocage\"],\"2yl5lQ\":[\"Réserver un appel\"],\"8Pfllj\":[\"En utilisant Twenty, vous acceptez les\"],\"PmmvzS\":[\"Calculer\"],\"AjVXBS\":[\"Calendrier\"],\"EUpfsd\":[\"Calendriers\"],\"dEgA5A\":[\"Annuler\"],\"0TllC8\":[\"Annuler à tout moment\"],\"rRK/Lf\":[\"Annuler le plan\"],\"N6gPiD\":[\"Annuler votre abonnement\"],\"OfzMnb\":[\"Changer \",[\"to\"]],\"VhMDMg\":[\"Changer le mot de passe\"],\"SviKkE\":[\"Chinois - Simplifié\"],\"dzb4Ep\":[\"Chinois - Traditionnel\"],\"JEFFOR\":[\"Choisir un objet\"],\"KT6rEB\":[\"Choisissez votre fournisseur\"],\"9qP96p\":[\"Choisissez votre essai\"],\"yz7wBu\":[\"Fermer\"],\"+zUMwJ\":[\"Configurer une connexion SSO\"],\"QTNsSm\":[\"Configurer et personnaliser vos préférences de calendrier.\"],\"aGwm+D\":[\"Configurer l'affichage des dates dans l'application\"],\"Bh4GBD\":[\"Configurer vos paramètres de courriel et de calendrier.\"],\"D8ATlr\":[\"Connecter un nouveau compte à votre espace de travail\"],\"Zgi9Fd\":[\"Se connecter avec Google\"],\"IOfqM8\":[\"Se connecter avec Microsoft\"],\"9TzudL\":[\"Comptes connectés\"],\"M73whl\":[\"Contexte\"],\"xGVfLh\":[\"Continuer\"],\"RvVi9c\":[\"Continuer avec le courriel\"],\"oZyG4C\":[\"Continuer avec Google\"],\"ztoybH\":[\"Continuer avec Microsoft\"],\"CcGOj+\":[\"Copilote\"],\"7eVkEH\":[\"Copier le lien d'invitation\"],\"Ej5euX\":[\"Copiez cette clé car elle ne sera plus visible\"],\"wBMjJ2\":[\"Compter\"],\"EkZfen\":[\"Compter tout\"],\"vQJINq\":[\"Compter les vides\"],\"DzRsDJ\":[\"Compter les non vides\"],\"9FZBbf\":[\"Compter les valeurs uniques\"],\"zNoOC2\":[\"Créez un workflow et revenez ici pour voir ses versions\"],\"uXGLuq\":[\"Créer une clé API\"],\"d0DCww\":[\"Créer un nouvel enregistrement\"],\"gSyzEV\":[\"Créer un profil\"],\"RoyYUE\":[\"Créer un rôle\"],\"dkAPxi\":[\"Créer un Webhook\"],\"9chYz/\":[\"Créez votre espace de travail\"],\"8skTDV\":[\"Objets personnalisés\"],\"qt+EaC\":[\"Personnaliser les champs disponibles dans les vues \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personnaliser le domaine\"],\"bCJa9l\":[\"Personnaliser la sécurité de votre espace de travail\"],\"Zz6Cxn\":[\"Zone de danger\"],\"5cNMFz\":[\"Modèle de données\"],\"r+cVRP\":[\"Type de données\"],\"mYGY3B\":[\"Date\"],\"Ud9zHv\":[\"Date et heure\"],\"5y3O+A\":[\"Désactiver\"],\"qk4i22\":[\"Désactiver \\\"Synchroniser les étiquettes des objets et les noms des API\\\" pour définir un nom d'API personnalisé\"],\"gexAq8\":[\"Désactiver ce champ\"],\"4tpC8V\":[\"Désactiver le workflow\"],\"Y2ImVJ\":[\"Définir le nom et la description de votre objet\"],\"cnGeoo\":[\"Supprimer\"],\"ZDGm40\":[\"Supprimer le compte\"],\"gAz0S5\":[\"Supprimer le compte et toutes les données associées\"],\"hGfWDm\":[\"Supprimer la clé API\"],\"4dpwsE\":[\"Supprimer l'enregistrement\"],\"kf0A63\":[\"Supprimer des enregistrements\"],\"T6S2Ns\":[\"Supprimer cette intégration\"],\"snMaH4\":[\"Supprimer le webhook\"],\"UA2IpC\":[\"Supprimer le workflow\"],\"ABwG9x\":[\"Supprimer les workflows\"],\"kYu0eF\":[\"Supprimer l'espace de travail\"],\"mk2Ygs\":[\"Supprimer l'ensemble de l'espace de travail\"],\"Cko536\":[\"Descendant\"],\"Nu4oKW\":[\"Description\"],\"2xxBws\":[\"Détruire\"],\"n+SX4g\":[\"Développeurs\"],\"zAg2B9\":[\"Rejeter le brouillon\"],\"i66xz9\":[\"Afficher comme date relative\"],\"EoKe5U\":[\"Domaine\"],\"QVVmxi\":[\"Ex. intégration backoffice\"],\"tOkc8o\":[\"Le plus tôt\"],\"JTbQuO\":[\"Date la plus ancienne\"],\"v+uKyy\":[\"Modifier l'intervalle de facturation\"],\"h2KoTu\":[\"Modifier le mode de paiement, consulter vos factures et plus encore\"],\"6o1M/Q\":[\"Modifier le nom de votre sous-domaine ou définir un domaine personnalisé.\"],\"O3oNi5\":[\"Courriel\"],\"lfQsvW\":[\"Intégration du courriel\"],\"QT/Wo7\":[\"Le courriel ou le domaine est déjà dans la liste de blocage\"],\"BXEcos\":[\"Courriels\"],\"eXoH4Q\":[\"employés\"],\"gqv5ZL\":[\"Employés\"],\"N2S1rs\":[\"Vide\"],\"T3juzf\":[\"URL du point de terminaison\"],\"lYGfRP\":[\"Anglais\"],\"/bfFKe\":[\"Profitez d'un essai gratuit de \",[\"withCreditCardTrialPeriodDuration\"],\" jours\"],\"GpB8YV\":[\"Entreprise\"],\"c3qGJX\":[\"Erreur lors de la suppression de la clé API : \",[\"err\"]],\"bj7nh3\":[\"Erreur lors de la régénération de la clé API : \",[\"err\"]],\"VSQxWH\":[\"Erreur lors du changement d'abonnement \",[\"to\"],\".\"],\"JLxMta\":[\"Configurer des points de terminaison Webhook pour les notifications d'événements asynchrones.\"],\"cIgBjB\":[\"Exclure les personnes et domaines suivants de la synchronisation des emails\"],\"fV7V51\":[\"Objets existants\"],\"IZ4o2e\":[\"Quitter les paramètres\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"Expérience\"],\"LxRNPw\":[\"Expiration\"],\"SkXfL0\":[\"Date d'expiration\"],\"i9qiyR\":[\"Expire dans\"],\"GS+Mus\":[\"Exporter\"],\"ep2rbf\":[\"Exporter les enregistrements\"],\"q46CjD\":[\"Exporter en PDF\"],\"DaGxE0\":[\"Exporter la vue\"],\"eWCNmu\":[\"Exporter les workflows\"],\"X9kySA\":[\"Favoris\"],\"zXgopL\":[\"Type de champ\"],\"vF68cg\":[\"Champs\"],\"3w/aqw\":[\"Nombre de champs\"],\"o7J4JM\":[\"Filtre\"],\"cSev+j\":[\"Filtres\"],\"kODvZJ\":[\"Prénom\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"aTieE0\":[\"de mensuel à annuel\"],\"K04lE5\":[\"d'annuel à mensuel\"],\"scmRyR\":[\"Accès complet\"],\"xANKBj\":[\"Fonctions\"],\"Weq9zb\":[\"Général\"],\"DDcvSo\":[\"Allemand\"],\"NXEW3h\":[\"Tirez le meilleur parti de votre espace de travail en invitant votre équipe.\"],\"zSGbaR\":[\"Obtenez votre abonnement\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Accordez à Twenty un accès temporaire à votre espace de travail pour que nous puissions résoudre des problèmes ou récupérer du contenu en votre nom. Vous pouvez révoquer l'accès à tout moment.\"],\"vLyv1R\":[\"Cacher\"],\"B06Bgk\":[\"Comment vous serez identifié sur l'application.\"],\"XTWO+W\":[\"Icône et nom\"],\"sJGljQ\":[\"Identifiant\"],\"j843N3\":[\"Si vous avez perdu cette clé, vous pouvez la régénérer, mais sachez que tout script utilisant cette clé devra être mis à jour. Veuillez taper \\\"\",[\"confirmationValue\"],\"\\\" pour confirmer.\"],\"NoNwIX\":[\"Inactif\"],\"pZ/USH\":[\"Index\"],\"JE2tjr\":[\"L'entrée doit être en camel case et ne peut pas commencer par un chiffre\"],\"AwUsnG\":[\"Instances\"],\"nbfdhU\":[\"Intégrations\"],\"NtFk/Z\":[\"Fournisseur d'authentification invalide\"],\"B2Tpo0\":[\"Email invalide\"],\"/m52AE\":[\"Email ou domaine invalide\"],\"QdoUFL\":[\"Valeurs de formulaire invalides\"],\"0M8+El\":[\"Inviter par email\"],\"PWIq/W\":[\"Inviter par lien\"],\"3athPG\":[\"Inviter par lien\"],\"5IfmKA\":[\"Lien d'invitation envoyé aux adresses email\"],\"d+Y+rP\":[\"Invitez votre équipe\"],\"Lj7sBL\":[\"Italien\"],\"dFtidv\":[\"Japonais\"],\"h6S9Yz\":[\"Coréen\"],\"zrpwCd\":[\"Lab\"],\"vXIe7J\":[\"Langue\"],\"UXBCwc\":[\"Nom de famille\"],\"wL3cK8\":[\"Dernier\"],\"Kcjbmz\":[\"Dernière date\"],\"pQjjYo\":[\"Lien copié dans le presse-papiers\"],\"FgAxTj\":[\"Déconnexion\"],\"nOhz3x\":[\"Déconnexion\"],\"T6YjCk\":[\"Gérer les membres\"],\"4cjU2u\":[\"Gérez les membres de votre espace ici\"],\"FyFNsd\":[\"Gérez vos comptes internet.\"],\"36kYu0\":[\"Gérez votre abonnement\"],\"3Sdni6\":[\"Marquer comme terminé\"],\"CK1KXz\":[\"Max\"],\"wlQNTg\":[\"Membres\"],\"eTUF28\":[\"Min\"],\"3Siwmw\":[\"Plus d'options\"],\"iSLA/r\":[\"Déplacer à gauche\"],\"Ubl2by\":[\"Déplacer à droite\"],\"6YtxFj\":[\"Nom\"],\"XSwyCU\":[\"Le nom ne peut pas être vide\"],\"z+6jaZ\":[\"Nom de votre clé API\"],\"J7w8lI\":[\"Nom de votre espace de travail\"],\"2T8KCk\":[\"Aller à l'enregistrement suivant\"],\"veSA19\":[\"Aller à la version suivante\"],\"ZTEho+\":[\"Aller au workflow suivant\"],\"2tw9bo\":[\"Aller à l'enregistrement précédent\"],\"I+Pm5V\":[\"Aller à la version précédente\"],\"QVUN3K\":[\"Aller au workflow précédent\"],\"isRobC\":[\"Nouveau\"],\"Kcr9Fr\":[\"Nouveau compte\"],\"o8MyXb\":[\"Nouvelle clé\"],\"j313SZ\":[\"Nouvelle clé\"],\"hFxdey\":[\"Nouvel objet\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"BcCzLv\":[\"Nouvel enregistrement\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"Nouveau Webhook\"],\"pwenQu\":[\"Aucun compte connecté\"],\"0uWxPM\":[\"Aucune exécution de workflow pour l'instant\"],\"AQCvCC\":[\"Aucune version de workflow pour l'instant\"],\"4wUkDk\":[\"Non vide\"],\"W0i24j\":[\"Objet\"],\"B3toQF\":[\"Objets\"],\"KNz3EF\":[\"Hors des sentiers battus\"],\"OV5wZZ\":[\"Ouvert\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"ou\"],\"/IX/7x\":[\"Autres\"],\"boJlGf\":[\"Page non trouvée\"],\"8ZsakT\":[\"Mot de passe\"],\"BxQ79w\":[\"Le mot de passe a été mis à jour\"],\"mi6Rel\":[\"Le lien de réinitialisation du mot de passe a été envoyé à l'email\"],\"SrVzRe\":[\"Pourcentage\"],\"yIK1GU\":[\"Pourcentage vide\"],\"PWLd4c\":[\"Pourcentage non vide\"],\"Bv3y5w\":[\"Détruire définitivement l'enregistrement\"],\"xjWlSJ\":[\"Détruire définitivement les enregistrements\"],\"uKWXhB\":[\"Détruire définitivement les workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"Photo\"],\"jEw0Mr\":[\"Veuillez entrer une URL valide\"],\"6nsIo3\":[\"Veuillez taper \\\"\",[\"confirmationValue\"],\"\\\" pour confirmer que vous souhaitez supprimer cette clé API. Sachez que tout script utilisant cette clé cessera de fonctionner.\"],\"mFZTXr\":[\"Veuillez taper \",[\"confirmationText\"],\" pour confirmer que vous souhaitez supprimer ce webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portugais — Brésil\"],\"xtXHeo\":[\"Portugais — Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Aperçu\"],\"LcET2C\":[\"Politique de confidentialité\"],\"vERlcd\":[\"Profil\"],\"YJgRqq\":[\"Pseudo-anglais\"],\"ibPuCP\":[\"Lire la documentation\"],\"v3xM25\":[\"Recevoir un email contenant un lien de mise à jour du mot de passe\"],\"dSCufP\":[\"Sélection des enregistrements\"],\"vpZcGd\":[\"Régénérer une clé API\"],\"Mwqo5m\":[\"Régénérer la clé\"],\"D+Mv78\":[\"Régénérer la clé\"],\"5icoS1\":[\"Communiqués\"],\"t/YqKh\":[\"Retirer\"],\"T/pF0Z\":[\"Retirer des favoris\"],\"KbS2K9\":[\"Réinitialiser le mot de passe\"],\"1IWc1n\":[\"Réinitialiser à\"],\"kx0s+n\":[\"Résultats\"],\"5dJK4M\":[\"Rôles\"],\"UX0N2y\":[\"Exécutez un workflow et revenez ici pour voir ses exécutions\"],\"A1taO8\":[\"Recherche\"],\"8NBMeZ\":[\"Rechercher '\",[\"commandMenuSearch\"],\"' avec...\"],\"l1/uy2\":[\"Rechercher un champ...\"],\"k7kp5/\":[\"Rechercher un index...\"],\"7taA9j\":[\"Champs de recherche\"],\"ofuw3g\":[\"Rechercher un objet...\"],\"IMeaSJ\":[\"Rechercher des enregistrements\"],\"a3LDKx\":[\"Sécurité\"],\"QREcJS\":[\"Voir la version active\"],\"OpPn5Z\":[\"Voir les exécutions\"],\"EtyY4+\":[\"Voir les versions\"],\"lYhPN0\":[\"Voir l'historique des versions\"],\"xraglu\":[\"Sélectionnez les événements à envoyer à ce point de terminaison\"],\"AXTJAW\":[\"Sélectionnez votre langue préférée\"],\"mjK8F3\":[\"Envoyer un email d'invitation à votre équipe\"],\"yy5k7a\":[\"Panneau d'administration du serveur\"],\"V7fgiB\":[\"Définir la visibilité des emails, gérer votre liste de blocage et plus encore.\"],\"cx14rp\":[\"Définir le nom de votre domaine\"],\"tn41zE\":[\"Définir le nom de votre sous-domaine\"],\"Tz0i8g\":[\"Paramètres\"],\"Vy9kmk\":[\"Partagez ce lien pour inviter des utilisateurs à rejoindre votre espace de travail\"],\"gWk8gY\":[\"Changer l'étiquette d'un champ doit-il aussi changer le nom de l'API ?\"],\"5lWFkC\":[\"Se connecter\"],\"e+RpCP\":[\"S'inscrire\"],\"5v3IHX\":[\"Single sign-on (SSO)\"],\"6Uau97\":[\"Passer\"],\"f6Hub0\":[\"Trier\"],\"65A04M\":[\"Espagnol\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Sous-domaine\"],\"omhc+7\":[\"Sous-domaine déjà pris\"],\"OlC/tU\":[\"Le sous-domaine ne peut pas dépasser 30 caractères\"],\"ZETwlU\":[\"Le sous-domaine ne peut pas être inférieur à 3 caractères\"],\"B5jRKH\":[\"L'abonnement a été changé \",[\"to\"]],\"AxQiPW\":[\"Somme\"],\"XYLcNv\":[\"Support\"],\"9yk9d1\":[\"Changer \",[\"from\"]],\"qi74XZ\":[\"Changer \",[\"to\"]],\"L6Fg36\":[\"Changer la facturation \",[\"to\"]],\"AtzMpB\":[\"Synchroniser l'étiquette du champ et le nom de l'API\"],\"E3AMmw\":[\"Paramètres système - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Paramètres système - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Conditions d'utilisation\"],\"NnH3pK\":[\"Test\"],\"bU9B27\":[\"Tester le workflow\"],\"2OUtmv\":[\"La description de ce champ\"],\"VGZYbZ\":[\"L'email associé à votre compte\"],\"h8mvCd\":[\"Le nom et l'icône de ce champ\"],\"+C8Rdp\":[\"Le nom de votre organisation\"],\"L97sPr\":[\"La page que vous recherchez a disparu ou n'a jamais existé. Revenons sur la bonne voie\"],\"uWikAA\":[\"Les valeurs de ce champ\"],\"+69KDk\":[\"Les valeurs de ce champ doivent être uniques\"],\"ynfkhb\":[\"Une erreur est survenue lors de la mise à jour du mot de passe.\"],\"PmtLRf\":[\"Un problème est survenu\"],\"hqCwGc\":[\"Cette action est irréversible. Cela supprimera définitivement cet utilisateur et l'exclura de toutes ses affectations.\"],\"gWGuHC\":[\"Cette action est irréversible. Cela supprimera définitivement l'ensemble de votre espace de travail. <0/> Veuillez saisir votre adresse e-mail pour confirmer.\"],\"/tr8Uy\":[\"Ce rôle a les permissions suivantes.\"],\"6j5nJX\":[\"Ce rôle est attribué à ces membres de l'espace de travail.\"],\"n9nSNJ\":[\"Format de l'heure\"],\"aqMzDX\":[\"au mois\"],\"WXXiXO\":[\"à l'année\"],\"PiUt3N\":[\"Type de déclencheur\"],\"IQ5pAL\":[\"Le type de déclencheur doit être Manuel - lorsqu'aucun enregistrement n'est sélectionné\"],\"+zy2Nq\":[\"Type\"],\"U83IeL\":[\"Tapez n'importe quoi\"],\"wSXm5S\":[\"Unique\"],\"29VNqC\":[\"Erreur inconnue\"],\"GQCXQS\":[\"Contacts illimités\"],\"ONWvwQ\":[\"Téléverser\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Utiliser comme brouillon\"],\"oTTQsc\":[\"Utilisez uniquement des lettres, des chiffres et des tirets. Commencez et terminez par une lettre ou un chiffre\"],\"c6uZUV\":[\"Utilisez notre API ou ajoutez manuellement votre premier \",[\"objectLabel\"]],\"7PzzBU\":[\"Utilisateur\"],\"IjyOjp\":[\"L'utilisateur n'est pas connecté\"],\"fXVIZq\":[\"Valeurs\"],\"KANz0G\":[\"Voir les détails de facturation\"],\"6n7jtr\":[\"Visualiser\"],\"id6ein\":[\"Nous prenons en charge vos PNG, JPEG et GIF carrés de moins de 10 Mo\"],\"ZS7vYp\":[\"Nous enverrons des requêtes POST à ce point de terminaison pour chaque nouvel événement\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Bienvenue sur \",[\"workspaceName\"]],\"C51ilI\":[\"Date d'expiration de la clé API.\"],\"leUubq\":[\"Quand la clé sera désactivée\"],\"wvyffT\":[\"Le workflow ne peut pas être testé\"],\"pmUArF\":[\"Espace de travail\"],\"VicISP\":[\"Suppression de l'espace de travail\"],\"Y0Fj4S\":[\"Logo de l'espace de travail\"],\"CozWO1\":[\"Nom de l'espace de travail\"],\"Q9pNST\":[\"Rédigez une description\"],\"3d1wCB\":[\"oui\"],\"zSkMV0\":[\"Vous serez facturé immédiatement pour l'année entière.\"],\"XVnj6K\":[\"Votre solde créditeur sera utilisé pour payer les factures mensuelles.\"],\"9ivpwk\":[\"Votre nom tel qu'il sera affiché\"],\"3RASGN\":[\"Votre nom tel qu'il sera affiché sur l'application\"],\"YQK8fJ\":[\"Votre espace de travail\"],\"RhNbPE\":[\"Votre espace de travail sera désactivé\"]}")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 deleted file mode 100644 index 5c9227105..000000000 --- a/packages/twenty-front/src/locales/generated/fr.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" de \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" Clé API\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 exécutions de nœuds de workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configurer le champ\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"Annuler\"],\"uyJsf6\":[\"À propos\"],\"AeXO77\":[\"Compte\"],\"nD0Y+a\":[\"Suppression de compte\"],\"bPwFdf\":[\"Comptes\"],\"FQBaXG\":[\"Activer\"],\"tu8A/k\":[\"Activer le workflow\"],\"F6pfE9\":[\"Actif\"],\"Mue4oc\":[\"Clés API actives créées par vous ou votre équipe.\"],\"m16xKo\":[\"Ajouter\"],\"DpV70M\":[\"Ajouter un champ\"],\"dEO3Zx\":[\"Ajouter un objet\"],\"sgXUv+\":[\"Ajouter un fournisseur d'identité SSO\"],\"5+ttxv\":[\"Ajouter à la liste de blocage\"],\"pBsoKL\":[\"Ajouter aux favoris\"],\"m2qDV8\":[\"Ajoutez votre premier \",[\"objectLabel\"]],\"vLO+NG\":[\"Ajouté \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Tous\"],\"3saA7W\":[\"Tous (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Tous les rôles\"],\"GMx1K0\":[\"Autoriser les connexions via l'authentification unique de Google.\"],\"dea+zy\":[\"Autoriser les connexions via l'authentification unique de Microsoft.\"],\"wMg43c\":[\"Permettre l'invitation de nouveaux utilisateurs en partageant un lien d'invitation.\"],\"vHeVg5\":[\"Permettre aux utilisateurs de se connecter avec un courriel et un mot de passe.\"],\"LG4K0m\":[\"Une erreur s'est produite lors de la mise à jour du mot de passe\"],\"mJ6m4C\":[\"Une description facultative\"],\"HZFm5R\":[\"et\"],\"0RqpZr\":[\"API & Webhooks\"],\"yRnk5W\":[\"Clé API\"],\"5h8ooz\":[\"Clés API\"],\"kAtj+q\":[\"Nom de l'API\"],\"aAIQg2\":[\"Apparence\"],\"3iX0kh\":[\"Êtes-vous sûr de vouloir modifier votre intervalle de facturation ?\"],\"nYD/Cq\":[\"Ascendant\"],\"rfYmIr\":[\"Attribuer des rôles pour spécifier les autorisations d'accès de chaque membre\"],\"lxQ+5m\":[\"Attribué à\"],\"H8QGSx\":[\"Au moins 8 caractères.\"],\"Y7Dx6e\":[\"Au moins une méthode d'authentification doit être activée\"],\"P8fBlG\":[\"Authentification\"],\"yIVrHZ\":[\"Autoriser\"],\"3uQmjD\":[\"Moyenne\"],\"Dht9W3\":[\"Retour au contenu\"],\"R+w/Va\":[\"Facturation\"],\"K1172m\":[\"Liste de blocage\"],\"2yl5lQ\":[\"Réserver un appel\"],\"8Pfllj\":[\"En utilisant Twenty, vous acceptez les\"],\"PmmvzS\":[\"Calculer\"],\"AjVXBS\":[\"Calendrier\"],\"EUpfsd\":[\"Calendriers\"],\"dEgA5A\":[\"Annuler\"],\"0TllC8\":[\"Annuler à tout moment\"],\"rRK/Lf\":[\"Annuler le plan\"],\"N6gPiD\":[\"Annuler votre abonnement\"],\"OfzMnb\":[\"Changer \",[\"to\"]],\"VhMDMg\":[\"Changer le mot de passe\"],\"SviKkE\":[\"Chinois - Simplifié\"],\"dzb4Ep\":[\"Chinois - Traditionnel\"],\"JEFFOR\":[\"Choisir un objet\"],\"KT6rEB\":[\"Choisissez votre fournisseur\"],\"9qP96p\":[\"Choisissez votre essai\"],\"yz7wBu\":[\"Fermer\"],\"+zUMwJ\":[\"Configurer une connexion SSO\"],\"QTNsSm\":[\"Configurer et personnaliser vos préférences de calendrier.\"],\"aGwm+D\":[\"Configurer l'affichage des dates dans l'application\"],\"Bh4GBD\":[\"Configurer vos paramètres de courriel et de calendrier.\"],\"D8ATlr\":[\"Connecter un nouveau compte à votre espace de travail\"],\"Zgi9Fd\":[\"Se connecter avec Google\"],\"IOfqM8\":[\"Se connecter avec Microsoft\"],\"9TzudL\":[\"Comptes connectés\"],\"M73whl\":[\"Contexte\"],\"xGVfLh\":[\"Continuer\"],\"RvVi9c\":[\"Continuer avec le courriel\"],\"oZyG4C\":[\"Continuer avec Google\"],\"ztoybH\":[\"Continuer avec Microsoft\"],\"CcGOj+\":[\"Copilote\"],\"7eVkEH\":[\"Copier le lien d'invitation\"],\"Ej5euX\":[\"Copiez cette clé car elle ne sera plus visible\"],\"wBMjJ2\":[\"Compter\"],\"EkZfen\":[\"Compter tout\"],\"vQJINq\":[\"Compter les vides\"],\"DzRsDJ\":[\"Compter les non vides\"],\"9FZBbf\":[\"Compter les valeurs uniques\"],\"zNoOC2\":[\"Créez un workflow et revenez ici pour voir ses versions\"],\"uXGLuq\":[\"Créer une clé API\"],\"d0DCww\":[\"Créer un nouvel enregistrement\"],\"dkAPxi\":[\"Créer un Webhook\"],\"8skTDV\":[\"Objets personnalisés\"],\"qt+EaC\":[\"Personnaliser les champs disponibles dans les vues \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personnaliser le domaine\"],\"bCJa9l\":[\"Personnaliser la sécurité de votre espace de travail\"],\"Zz6Cxn\":[\"Zone de danger\"],\"5cNMFz\":[\"Modèle de données\"],\"r+cVRP\":[\"Type de données\"],\"mYGY3B\":[\"Date\"],\"Ud9zHv\":[\"Date et heure\"],\"5y3O+A\":[\"Désactiver\"],\"qk4i22\":[\"Désactiver \\\"Synchroniser les étiquettes des objets et les noms des API\\\" pour définir un nom d'API personnalisé\"],\"gexAq8\":[\"Désactiver ce champ\"],\"4tpC8V\":[\"Désactiver le workflow\"],\"Y2ImVJ\":[\"Définir le nom et la description de votre objet\"],\"cnGeoo\":[\"Supprimer\"],\"ZDGm40\":[\"Supprimer le compte\"],\"gAz0S5\":[\"Supprimer le compte et toutes les données associées\"],\"hGfWDm\":[\"Supprimer la clé API\"],\"4dpwsE\":[\"Supprimer l'enregistrement\"],\"kf0A63\":[\"Supprimer des enregistrements\"],\"T6S2Ns\":[\"Supprimer cette intégration\"],\"snMaH4\":[\"Supprimer le webhook\"],\"kYu0eF\":[\"Supprimer l'espace de travail\"],\"mk2Ygs\":[\"Supprimer l'ensemble de l'espace de travail\"],\"Cko536\":[\"Descendant\"],\"Nu4oKW\":[\"Description\"],\"2xxBws\":[\"Détruire\"],\"n+SX4g\":[\"Développeurs\"],\"zAg2B9\":[\"Rejeter le brouillon\"],\"i66xz9\":[\"Afficher comme date relative\"],\"EoKe5U\":[\"Domaine\"],\"QVVmxi\":[\"Ex. intégration backoffice\"],\"tOkc8o\":[\"Le plus tôt\"],\"JTbQuO\":[\"Date la plus ancienne\"],\"v+uKyy\":[\"Modifier l'intervalle de facturation\"],\"h2KoTu\":[\"Modifier le mode de paiement, consulter vos factures et plus encore\"],\"6o1M/Q\":[\"Modifier le nom de votre sous-domaine ou définir un domaine personnalisé.\"],\"O3oNi5\":[\"Courriel\"],\"lfQsvW\":[\"Intégration du courriel\"],\"QT/Wo7\":[\"Le courriel ou le domaine est déjà dans la liste de blocage\"],\"BXEcos\":[\"Courriels\"],\"eXoH4Q\":[\"employés\"],\"gqv5ZL\":[\"Employés\"],\"N2S1rs\":[\"Vide\"],\"T3juzf\":[\"URL du point de terminaison\"],\"lYGfRP\":[\"Anglais\"],\"/bfFKe\":[\"Profitez d'un essai gratuit de \",[\"withCreditCardTrialPeriodDuration\"],\" jours\"],\"GpB8YV\":[\"Entreprise\"],\"c3qGJX\":[\"Erreur lors de la suppression de la clé API : \",[\"err\"]],\"bj7nh3\":[\"Erreur lors de la régénération de la clé API : \",[\"err\"]],\"VSQxWH\":[\"Erreur lors du changement d'abonnement \",[\"to\"],\".\"],\"JLxMta\":[\"Configurer des points de terminaison Webhook pour les notifications d'événements asynchrones.\"],\"cIgBjB\":[\"Exclure les personnes et domaines suivants de la synchronisation des emails\"],\"fV7V51\":[\"Objets existants\"],\"IZ4o2e\":[\"Quitter les paramètres\"],\"tXGQvS\":[\"Le nœud sélectionné doit être un nœud de création d'étape.\"],\"bKBhgb\":[\"Expérience\"],\"LxRNPw\":[\"Expiration\"],\"SkXfL0\":[\"Date d'expiration\"],\"i9qiyR\":[\"Expire dans\"],\"GS+Mus\":[\"Exporter\"],\"ep2rbf\":[\"Exporter les enregistrements\"],\"q46CjD\":[\"Exporter en PDF\"],\"DaGxE0\":[\"Exporter la vue\"],\"X9kySA\":[\"Favoris\"],\"zXgopL\":[\"Type de champ\"],\"vF68cg\":[\"Champs\"],\"3w/aqw\":[\"Nombre de champs\"],\"o7J4JM\":[\"Filtre\"],\"cSev+j\":[\"Filtres\"],\"glx6on\":[\"Mot de passe oublié ?\"],\"nLC6tu\":[\"Français\"],\"aTieE0\":[\"de mensuel à annuel\"],\"K04lE5\":[\"d'annuel à mensuel\"],\"scmRyR\":[\"Accès complet\"],\"xANKBj\":[\"Fonctions\"],\"Weq9zb\":[\"Général\"],\"DDcvSo\":[\"Allemand\"],\"NXEW3h\":[\"Tirez le meilleur parti de votre espace de travail en invitant votre équipe.\"],\"zSGbaR\":[\"Obtenez votre abonnement\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Accordez à Twenty un accès temporaire à votre espace de travail pour que nous puissions résoudre des problèmes ou récupérer du contenu en votre nom. Vous pouvez révoquer l'accès à tout moment.\"],\"vLyv1R\":[\"Cacher\"],\"XTWO+W\":[\"Icône et nom\"],\"sJGljQ\":[\"Identifiant\"],\"j843N3\":[\"Si vous avez perdu cette clé, vous pouvez la régénérer, mais sachez que tout script utilisant cette clé devra être mis à jour. Veuillez taper \\\"\",[\"confirmationValue\"],\"\\\" pour confirmer.\"],\"NoNwIX\":[\"Inactif\"],\"pZ/USH\":[\"Index\"],\"JE2tjr\":[\"L'entrée doit être en camel case et ne peut pas commencer par un chiffre\"],\"AwUsnG\":[\"Instances\"],\"nbfdhU\":[\"Intégrations\"],\"NtFk/Z\":[\"Fournisseur d'authentification invalide\"],\"B2Tpo0\":[\"Email invalide\"],\"/m52AE\":[\"Email ou domaine invalide\"],\"QdoUFL\":[\"Valeurs de formulaire invalides\"],\"0M8+El\":[\"Inviter par email\"],\"PWIq/W\":[\"Inviter par lien\"],\"3athPG\":[\"Inviter par lien\"],\"5IfmKA\":[\"Lien d'invitation envoyé aux adresses email\"],\"d+Y+rP\":[\"Invitez votre équipe\"],\"Lj7sBL\":[\"Italien\"],\"dFtidv\":[\"Japonais\"],\"h6S9Yz\":[\"Coréen\"],\"zrpwCd\":[\"Lab\"],\"vXIe7J\":[\"Langue\"],\"wL3cK8\":[\"Dernier\"],\"Kcjbmz\":[\"Dernière date\"],\"pQjjYo\":[\"Lien copié dans le presse-papiers\"],\"FgAxTj\":[\"Déconnexion\"],\"nOhz3x\":[\"Déconnexion\"],\"T6YjCk\":[\"Gérer les membres\"],\"4cjU2u\":[\"Gérez les membres de votre espace ici\"],\"FyFNsd\":[\"Gérez vos comptes internet.\"],\"36kYu0\":[\"Gérez votre abonnement\"],\"3Sdni6\":[\"Marquer comme terminé\"],\"CK1KXz\":[\"Max\"],\"wlQNTg\":[\"Membres\"],\"eTUF28\":[\"Min\"],\"3Siwmw\":[\"Plus d'options\"],\"iSLA/r\":[\"Déplacer à gauche\"],\"Ubl2by\":[\"Déplacer à droite\"],\"6YtxFj\":[\"Nom\"],\"z+6jaZ\":[\"Nom de votre clé API\"],\"J7w8lI\":[\"Nom de votre espace de travail\"],\"2T8KCk\":[\"Aller à l'enregistrement suivant\"],\"veSA19\":[\"Aller à la version suivante\"],\"ZTEho+\":[\"Aller au workflow suivant\"],\"2tw9bo\":[\"Aller à l'enregistrement précédent\"],\"I+Pm5V\":[\"Aller à la version précédente\"],\"QVUN3K\":[\"Aller au workflow précédent\"],\"isRobC\":[\"Nouveau\"],\"Kcr9Fr\":[\"Nouveau compte\"],\"o8MyXb\":[\"Nouvelle clé\"],\"j313SZ\":[\"Nouvelle clé\"],\"hFxdey\":[\"Nouvel objet\"],\"7vhWI8\":[\"Nouveau mot de passe\"],\"BcCzLv\":[\"Nouvel enregistrement\"],\"2lmOC5\":[\"Nouveau rôle\"],\"U1DAok\":[\"Nouveau Webhook\"],\"pwenQu\":[\"Aucun compte connecté\"],\"0uWxPM\":[\"Aucune exécution de workflow pour l'instant\"],\"AQCvCC\":[\"Aucune version de workflow pour l'instant\"],\"4wUkDk\":[\"Non vide\"],\"W0i24j\":[\"Objet\"],\"B3toQF\":[\"Objets\"],\"KNz3EF\":[\"Hors des sentiers battus\"],\"OV5wZZ\":[\"Ouvert\"],\"0zpgxV\":[\"Options\"],\"BzEFor\":[\"ou\"],\"/IX/7x\":[\"Autres\"],\"boJlGf\":[\"Page non trouvée\"],\"8ZsakT\":[\"Mot de passe\"],\"BxQ79w\":[\"Le mot de passe a été mis à jour\"],\"mi6Rel\":[\"Le lien de réinitialisation du mot de passe a été envoyé à l'email\"],\"SrVzRe\":[\"Pourcentage\"],\"yIK1GU\":[\"Pourcentage vide\"],\"PWLd4c\":[\"Pourcentage non vide\"],\"Bv3y5w\":[\"Détruire définitivement l'enregistrement\"],\"N0+GsR\":[\"Photo\"],\"jEw0Mr\":[\"Veuillez entrer une URL valide\"],\"6nsIo3\":[\"Veuillez taper \\\"\",[\"confirmationValue\"],\"\\\" pour confirmer que vous souhaitez supprimer cette clé API. Sachez que tout script utilisant cette clé cessera de fonctionner.\"],\"mFZTXr\":[\"Veuillez taper \",[\"confirmationText\"],\" pour confirmer que vous souhaitez supprimer ce webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portugais — Brésil\"],\"xtXHeo\":[\"Portugais — Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Aperçu\"],\"LcET2C\":[\"Politique de confidentialité\"],\"vERlcd\":[\"Profil\"],\"YJgRqq\":[\"Pseudo-anglais\"],\"ibPuCP\":[\"Lire la documentation\"],\"v3xM25\":[\"Recevoir un email contenant un lien de mise à jour du mot de passe\"],\"dSCufP\":[\"Sélection des enregistrements\"],\"vpZcGd\":[\"Régénérer une clé API\"],\"Mwqo5m\":[\"Régénérer la clé\"],\"D+Mv78\":[\"Régénérer la clé\"],\"5icoS1\":[\"Communiqués\"],\"t/YqKh\":[\"Retirer\"],\"T/pF0Z\":[\"Retirer des favoris\"],\"KbS2K9\":[\"Réinitialiser le mot de passe\"],\"1IWc1n\":[\"Réinitialiser à\"],\"kx0s+n\":[\"Résultats\"],\"5dJK4M\":[\"Rôles\"],\"UX0N2y\":[\"Exécutez un workflow et revenez ici pour voir ses exécutions\"],\"A1taO8\":[\"Recherche\"],\"8NBMeZ\":[\"Rechercher '\",[\"commandMenuSearch\"],\"' avec...\"],\"l1/uy2\":[\"Rechercher un champ...\"],\"k7kp5/\":[\"Rechercher un index...\"],\"7taA9j\":[\"Champs de recherche\"],\"ofuw3g\":[\"Rechercher un objet...\"],\"IMeaSJ\":[\"Rechercher des enregistrements\"],\"a3LDKx\":[\"Sécurité\"],\"QREcJS\":[\"Voir la version active\"],\"OpPn5Z\":[\"Voir les exécutions\"],\"EtyY4+\":[\"Voir les versions\"],\"lYhPN0\":[\"Voir l'historique des versions\"],\"xraglu\":[\"Sélectionnez les événements à envoyer à ce point de terminaison\"],\"AXTJAW\":[\"Sélectionnez votre langue préférée\"],\"mjK8F3\":[\"Envoyer un email d'invitation à votre équipe\"],\"yy5k7a\":[\"Panneau d'administration du serveur\"],\"V7fgiB\":[\"Définir la visibilité des emails, gérer votre liste de blocage et plus encore.\"],\"cx14rp\":[\"Définir le nom de votre domaine\"],\"tn41zE\":[\"Définir le nom de votre sous-domaine\"],\"Tz0i8g\":[\"Paramètres\"],\"Vy9kmk\":[\"Partagez ce lien pour inviter des utilisateurs à rejoindre votre espace de travail\"],\"gWk8gY\":[\"Changer l'étiquette d'un champ doit-il aussi changer le nom de l'API ?\"],\"5lWFkC\":[\"Se connecter\"],\"e+RpCP\":[\"S'inscrire\"],\"5v3IHX\":[\"Single sign-on (SSO)\"],\"6Uau97\":[\"Passer\"],\"f6Hub0\":[\"Trier\"],\"65A04M\":[\"Espagnol\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Sous-domaine\"],\"omhc+7\":[\"Sous-domaine déjà pris\"],\"OlC/tU\":[\"Le sous-domaine ne peut pas dépasser 30 caractères\"],\"ZETwlU\":[\"Le sous-domaine ne peut pas être inférieur à 3 caractères\"],\"B5jRKH\":[\"L'abonnement a été changé \",[\"to\"]],\"AxQiPW\":[\"Somme\"],\"XYLcNv\":[\"Support\"],\"9yk9d1\":[\"Changer \",[\"from\"]],\"qi74XZ\":[\"Changer \",[\"to\"]],\"L6Fg36\":[\"Changer la facturation \",[\"to\"]],\"AtzMpB\":[\"Synchroniser l'étiquette du champ et le nom de l'API\"],\"E3AMmw\":[\"Paramètres système - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Paramètres système - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Conditions d'utilisation\"],\"NnH3pK\":[\"Test\"],\"bU9B27\":[\"Tester le workflow\"],\"2OUtmv\":[\"La description de ce champ\"],\"VGZYbZ\":[\"L'email associé à votre compte\"],\"h8mvCd\":[\"Le nom et l'icône de ce champ\"],\"L97sPr\":[\"La page que vous recherchez a disparu ou n'a jamais existé. Revenons sur la bonne voie\"],\"uWikAA\":[\"Les valeurs de ce champ\"],\"+69KDk\":[\"Les valeurs de ce champ doivent être uniques\"],\"ynfkhb\":[\"Une erreur est survenue lors de la mise à jour du mot de passe.\"],\"PmtLRf\":[\"Un problème est survenu\"],\"hqCwGc\":[\"Cette action est irréversible. Cela supprimera définitivement cet utilisateur et l'exclura de toutes ses affectations.\"],\"gWGuHC\":[\"Cette action est irréversible. Cela supprimera définitivement l'ensemble de votre espace de travail. <0/> Veuillez saisir votre adresse e-mail pour confirmer.\"],\"n9nSNJ\":[\"Format de l'heure\"],\"aqMzDX\":[\"au mois\"],\"WXXiXO\":[\"à l'année\"],\"PiUt3N\":[\"Type de déclencheur\"],\"IQ5pAL\":[\"Le type de déclencheur doit être Manuel - lorsqu'aucun enregistrement n'est sélectionné\"],\"+zy2Nq\":[\"Type\"],\"U83IeL\":[\"Tapez n'importe quoi\"],\"wSXm5S\":[\"Unique\"],\"GQCXQS\":[\"Contacts illimités\"],\"ONWvwQ\":[\"Téléverser\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Utiliser comme brouillon\"],\"oTTQsc\":[\"Utilisez uniquement des lettres, des chiffres et des tirets. Commencez et terminez par une lettre ou un chiffre\"],\"c6uZUV\":[\"Utilisez notre API ou ajoutez manuellement votre premier \",[\"objectLabel\"]],\"7PzzBU\":[\"Utilisateur\"],\"IjyOjp\":[\"L'utilisateur n'est pas connecté\"],\"fXVIZq\":[\"Valeurs\"],\"KANz0G\":[\"Voir les détails de facturation\"],\"6n7jtr\":[\"Visualiser\"],\"id6ein\":[\"Nous prenons en charge vos PNG, JPEG et GIF carrés de moins de 10 Mo\"],\"ZS7vYp\":[\"Nous enverrons des requêtes POST à ce point de terminaison pour chaque nouvel événement\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Bienvenue sur \",[\"workspaceName\"]],\"C51ilI\":[\"Date d'expiration de la clé API.\"],\"leUubq\":[\"Quand la clé sera désactivée\"],\"wvyffT\":[\"Le workflow ne peut pas être testé\"],\"pmUArF\":[\"Espace de travail\"],\"VicISP\":[\"Suppression de l'espace de travail\"],\"Q9pNST\":[\"Rédigez une description\"],\"3d1wCB\":[\"oui\"],\"zSkMV0\":[\"Vous serez facturé immédiatement pour l'année entière.\"],\"XVnj6K\":[\"Votre solde créditeur sera utilisé pour payer les factures mensuelles.\"],\"9ivpwk\":[\"Votre nom tel qu'il sera affiché\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Votre espace de travail sera désactivé\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/it-IT.ts b/packages/twenty-front/src/locales/generated/it-IT.ts new file mode 100644 index 000000000..92091efc6 --- /dev/null +++ b/packages/twenty-front/src/locales/generated/it-IT.ts @@ -0,0 +1 @@ +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" di \",[\"fieldLabel\"]],\"uogEAL\":[\"Chiave API \",[\"apiKeyName\"]],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1.000 esecuzioni di nodi del workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configura il campo\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"Interrompi\"],\"uyJsf6\":[\"Informazioni\"],\"AeXO77\":[\"Account\"],\"nD0Y+a\":[\"Eliminazione account\"],\"bPwFdf\":[\"Account\"],\"FQBaXG\":[\"Attiva\"],\"tu8A/k\":[\"Attiva workflow\"],\"F6pfE9\":[\"Attivo\"],\"Mue4oc\":[\"Chiavi API attive create da te o dal tuo team.\"],\"m16xKo\":[\"Aggiungi\"],\"DpV70M\":[\"Aggiungi campo\"],\"dEO3Zx\":[\"Aggiungi oggetto\"],\"sgXUv+\":[\"Aggiungi provider di identità SSO\"],\"5+ttxv\":[\"Aggiungi alla lista di blocco\"],\"pBsoKL\":[\"Aggiungi ai preferiti\"],\"m2qDV8\":[\"Aggiungi il tuo primo \",[\"objectLabel\"]],\"vLO+NG\":[\"Aggiunto \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Tutti\"],\"3saA7W\":[\"Tutti (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Tutti i ruoli\"],\"GMx1K0\":[\"Consenti l'accesso tramite la funzionalità single sign-on di Google.\"],\"dea+zy\":[\"Consenti l'accesso tramite la funzionalità single sign-on di Microsoft.\"],\"wMg43c\":[\"Consenti l'invito di nuovi utenti condividendo un link di invito.\"],\"vHeVg5\":[\"Consenti agli utenti di accedere con e-mail e password.\"],\"LG4K0m\":[\"Si è verificato un errore durante l'aggiornamento della password\"],\"mJ6m4C\":[\"Descrizione opzionale\"],\"HZFm5R\":[\"e\"],\"0RqpZr\":[\"API e Webhook\"],\"yRnk5W\":[\"Chiave API\"],\"5h8ooz\":[\"Chiavi API\"],\"kAtj+q\":[\"Nome API\"],\"aAIQg2\":[\"Aspetto\"],\"3iX0kh\":[\"Sei sicuro di voler cambiare l'intervallo di fatturazione?\"],\"nYD/Cq\":[\"Ascendente\"],\"rfYmIr\":[\"Assegna ruoli per specificare le autorizzazioni di accesso di ogni membro\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"Assegnato a\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"Almeno 8 caratteri.\"],\"Y7Dx6e\":[\"Deve essere abilitato almeno un metodo di autenticazione\"],\"P8fBlG\":[\"Autenticazione\"],\"yIVrHZ\":[\"Autorizza\"],\"3uQmjD\":[\"Media\"],\"Dht9W3\":[\"Torna al contenuto\"],\"R+w/Va\":[\"Fatturazione\"],\"K1172m\":[\"Lista di blocco\"],\"2yl5lQ\":[\"Prenota una chiamata\"],\"8Pfllj\":[\"Utilizzando Twenty, accetti la\"],\"PmmvzS\":[\"Calcola\"],\"AjVXBS\":[\"Calendario\"],\"EUpfsd\":[\"Calendari\"],\"dEgA5A\":[\"Annulla\"],\"0TllC8\":[\"Annulla in qualsiasi momento\"],\"rRK/Lf\":[\"Annulla piano\"],\"N6gPiD\":[\"Annulla l'abbonamento\"],\"OfzMnb\":[\"Cambia \",[\"to\"]],\"VhMDMg\":[\"Cambia password\"],\"SviKkE\":[\"Cinese semplificato\"],\"dzb4Ep\":[\"Cinese tradizionale\"],\"JEFFOR\":[\"Scegli un oggetto\"],\"KT6rEB\":[\"Scegli il tuo fornitore\"],\"9qP96p\":[\"Scegli la tua prova\"],\"yz7wBu\":[\"Chiudi\"],\"+zUMwJ\":[\"Configura una connessione SSO\"],\"QTNsSm\":[\"Configura e personalizza le preferenze del calendario.\"],\"aGwm+D\":[\"Configura la visualizzazione delle date nell'app\"],\"Bh4GBD\":[\"Configura le impostazioni di e-mail e calendario.\"],\"D8ATlr\":[\"Collega un nuovo account al tuo workspace\"],\"Zgi9Fd\":[\"Connettiti con Google\"],\"IOfqM8\":[\"Connettiti con Microsoft\"],\"9TzudL\":[\"Account collegati\"],\"M73whl\":[\"Contesto\"],\"xGVfLh\":[\"Continua\"],\"RvVi9c\":[\"Continua con l'e-mail\"],\"oZyG4C\":[\"Continua con Google\"],\"ztoybH\":[\"Continua con Microsoft\"],\"CcGOj+\":[\"Copilota\"],\"7eVkEH\":[\"Copia il link dell'invito\"],\"Ej5euX\":[\"Copia questa chiave perché non sarà più visibile\"],\"wBMjJ2\":[\"Conteggio\"],\"EkZfen\":[\"Conta tutti\"],\"vQJINq\":[\"Conta vuoti\"],\"DzRsDJ\":[\"Conta non vuoti\"],\"9FZBbf\":[\"Conta valori unici\"],\"zNoOC2\":[\"Crea un workflow e torna qui per visualizzarne le versioni\"],\"uXGLuq\":[\"Crea chiave API\"],\"d0DCww\":[\"Crea nuovo record\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"Crea webhook\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"Oggetti personalizzati\"],\"qt+EaC\":[\"Personalizza i campi disponibili nelle viste \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personalizza dominio\"],\"bCJa9l\":[\"Personalizza la sicurezza del tuo workspace\"],\"Zz6Cxn\":[\"Zona pericolosa\"],\"5cNMFz\":[\"Modello dati\"],\"r+cVRP\":[\"Tipo di dati\"],\"mYGY3B\":[\"Data\"],\"Ud9zHv\":[\"Data e ora\"],\"5y3O+A\":[\"Disattiva\"],\"qk4i22\":[\"Disattiva \\\"Sincronizza etichette oggetti e nomi API\\\" per impostare un nome API personalizzato\"],\"gexAq8\":[\"Disattiva questo campo\"],\"4tpC8V\":[\"Disattiva workflow\"],\"Y2ImVJ\":[\"Definisci il nome e la descrizione dell'oggetto\"],\"cnGeoo\":[\"Elimina\"],\"ZDGm40\":[\"Elimina account\"],\"gAz0S5\":[\"Elimina l'account e tutti i dati associati\"],\"hGfWDm\":[\"Elimina chiave API\"],\"4dpwsE\":[\"Elimina record\"],\"kf0A63\":[\"Elimina record\"],\"T6S2Ns\":[\"Elimina questa integrazione\"],\"snMaH4\":[\"Elimina webhook\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"Elimina workspace\"],\"mk2Ygs\":[\"Elimina l'intero workspace\"],\"Cko536\":[\"Discendente\"],\"Nu4oKW\":[\"Descrizione\"],\"2xxBws\":[\"Distruggi\"],\"n+SX4g\":[\"Sviluppatori\"],\"zAg2B9\":[\"Scarta bozza\"],\"i66xz9\":[\"Visualizza come data relativa\"],\"EoKe5U\":[\"Dominio\"],\"QVVmxi\":[\"Es. integrazione backoffice\"],\"tOkc8o\":[\"Più antico\"],\"JTbQuO\":[\"Data più antica\"],\"v+uKyy\":[\"Modifica intervallo di fatturazione\"],\"h2KoTu\":[\"Modifica il metodo di pagamento, visualizza le fatture e altro\"],\"6o1M/Q\":[\"Modifica il nome del sottodominio o imposta un dominio personalizzato.\"],\"O3oNi5\":[\"Email\"],\"lfQsvW\":[\"Integrazione e-mail\"],\"QT/Wo7\":[\"L'e-mail o il dominio è già presente nella lista di blocco\"],\"BXEcos\":[\"Email\"],\"eXoH4Q\":[\"dipendenti\"],\"gqv5ZL\":[\"Dipendenti\"],\"N2S1rs\":[\"Vuoto\"],\"T3juzf\":[\"URL endpoint\"],\"lYGfRP\":[\"Inglese\"],\"/bfFKe\":[\"Goditi una prova gratuita di \",[\"withCreditCardTrialPeriodDuration\"],\" giorni\"],\"GpB8YV\":[\"Enterprise\"],\"c3qGJX\":[\"Errore nell'eliminazione della chiave API: \",[\"err\"]],\"bj7nh3\":[\"Errore nella rigenerazione della chiave API: \",[\"err\"]],\"VSQxWH\":[\"Errore durante il cambio di abbonamento \",[\"to\"],\".\"],\"JLxMta\":[\"Stabilisci endpoint Webhook per le notifiche di eventi asincroni.\"],\"cIgBjB\":[\"Escludi le seguenti persone e domini dalla mia sincronizzazione e-mail\"],\"fV7V51\":[\"Oggetti esistenti\"],\"IZ4o2e\":[\"Esci dalle impostazioni\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"Esperienza\"],\"LxRNPw\":[\"Scadenza\"],\"SkXfL0\":[\"Data di scadenza\"],\"i9qiyR\":[\"Scade tra\"],\"GS+Mus\":[\"Esporta\"],\"ep2rbf\":[\"Esporta record\"],\"q46CjD\":[\"Esporta in PDF\"],\"DaGxE0\":[\"Esporta vista\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"Preferiti\"],\"zXgopL\":[\"Tipo di campo\"],\"vF68cg\":[\"Campi\"],\"3w/aqw\":[\"Conteggio campi\"],\"o7J4JM\":[\"Filtro\"],\"cSev+j\":[\"Filtri\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"Hai dimenticato la password?\"],\"nLC6tu\":[\"Francese\"],\"aTieE0\":[\"da mensile ad annuale\"],\"K04lE5\":[\"da annuale a mensile\"],\"scmRyR\":[\"Accesso completo\"],\"xANKBj\":[\"Funzioni\"],\"Weq9zb\":[\"Generale\"],\"DDcvSo\":[\"Tedesco\"],\"NXEW3h\":[\"Sfrutta al massimo il tuo spazio di lavoro invitando il tuo team.\"],\"zSGbaR\":[\"Ottieni il tuo abbonamento\"],\"2GT3Hf\":[\"Globale\"],\"hWp1MY\":[\"Concedi al supporto Twenty l'accesso temporaneo al tuo spazio di lavoro per risolvere problemi o recuperare contenuti per tuo conto. Puoi revocare l'accesso in qualsiasi momento.\"],\"vLyv1R\":[\"Nascondi\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"Icona e nome\"],\"sJGljQ\":[\"Identificatore\"],\"j843N3\":[\"Se hai perso questa chiave, puoi rigenerarla, ma sappi che qualsiasi script che utilizza questa chiave dovrà essere aggiornato. Digita \\\"\",[\"confirmationValue\"],\"\\\" per confermare.\"],\"NoNwIX\":[\"Inattivo\"],\"pZ/USH\":[\"Indici\"],\"JE2tjr\":[\"L'input deve essere in camel case e non può iniziare con un numero\"],\"AwUsnG\":[\"Istanze\"],\"nbfdhU\":[\"Integrazioni\"],\"NtFk/Z\":[\"Provider di autenticazione non valido\"],\"B2Tpo0\":[\"Email non valida\"],\"/m52AE\":[\"Email o dominio non valido\"],\"QdoUFL\":[\"Valori del modulo non validi\"],\"0M8+El\":[\"Invita via e-mail\"],\"PWIq/W\":[\"Invita tramite link\"],\"3athPG\":[\"Invita tramite link\"],\"5IfmKA\":[\"Link di invito inviato agli indirizzi e-mail\"],\"d+Y+rP\":[\"Invita il tuo team\"],\"Lj7sBL\":[\"Italiano\"],\"dFtidv\":[\"Giapponese\"],\"h6S9Yz\":[\"Coreano\"],\"zrpwCd\":[\"Lab\"],\"vXIe7J\":[\"Lingua\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"Ultimo\"],\"Kcjbmz\":[\"Ultima data\"],\"pQjjYo\":[\"Link copiato negli appunti\"],\"FgAxTj\":[\"Disconnetti\"],\"nOhz3x\":[\"Disconnessione\"],\"T6YjCk\":[\"Gestisci membri\"],\"4cjU2u\":[\"Gestisci qui i membri del tuo spazio\"],\"FyFNsd\":[\"Gestisci i tuoi account Internet.\"],\"36kYu0\":[\"Gestisci il tuo abbonamento\"],\"3Sdni6\":[\"Segna come fatto\"],\"CK1KXz\":[\"Massimo\"],\"wlQNTg\":[\"Membri\"],\"eTUF28\":[\"Minimo\"],\"3Siwmw\":[\"Altre opzioni\"],\"iSLA/r\":[\"Sposta a sinistra\"],\"Ubl2by\":[\"Sposta a destra\"],\"6YtxFj\":[\"Nome\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"Nome della chiave API\"],\"J7w8lI\":[\"Nome del tuo spazio di lavoro\"],\"2T8KCk\":[\"Vai al record successivo\"],\"veSA19\":[\"Vai alla versione successiva\"],\"ZTEho+\":[\"Vai al workflow successivo\"],\"2tw9bo\":[\"Vai al record precedente\"],\"I+Pm5V\":[\"Vai alla versione precedente\"],\"QVUN3K\":[\"Vai al workflow precedente\"],\"isRobC\":[\"Nuovo\"],\"Kcr9Fr\":[\"Nuovo account\"],\"o8MyXb\":[\"Nuova chiave\"],\"j313SZ\":[\"Nuova chiave\"],\"hFxdey\":[\"Nuovo oggetto\"],\"7vhWI8\":[\"Nuova password\"],\"BcCzLv\":[\"Nuovo record\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"Nuovo Webhook\"],\"pwenQu\":[\"Nessun account collegato\"],\"0uWxPM\":[\"Nessuna esecuzione del workflow\"],\"AQCvCC\":[\"Nessuna versione del workflow\"],\"4wUkDk\":[\"Non vuoto\"],\"W0i24j\":[\"Oggetto\"],\"B3toQF\":[\"Oggetti\"],\"KNz3EF\":[\"Fuori dai sentieri battuti\"],\"OV5wZZ\":[\"Aperto\"],\"0zpgxV\":[\"Opzioni\"],\"BzEFor\":[\"o\"],\"/IX/7x\":[\"Altro\"],\"boJlGf\":[\"Pagina non trovata\"],\"8ZsakT\":[\"Password\"],\"BxQ79w\":[\"La password è stata aggiornata\"],\"mi6Rel\":[\"Il link per reimpostare la password è stato inviato all'e-mail\"],\"SrVzRe\":[\"Percentuale\"],\"yIK1GU\":[\"Percentuale vuoto\"],\"PWLd4c\":[\"Percentuale non vuoto\"],\"Bv3y5w\":[\"Distruggi definitivamente il record\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"Immagine\"],\"jEw0Mr\":[\"Inserisci un URL valido\"],\"6nsIo3\":[\"Digita \\\"\",[\"confirmationValue\"],\"\\\" per confermare che vuoi eliminare questa chiave API. Tieni presente che qualsiasi script che utilizza questa chiave smetterà di funzionare.\"],\"mFZTXr\":[\"Digita \",[\"confirmationText\"],\" per confermare che vuoi eliminare questo webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portoghese - Brasile\"],\"xtXHeo\":[\"Portoghese - Portogallo\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Anteprima\"],\"LcET2C\":[\"Informativa sulla privacy\"],\"vERlcd\":[\"Profilo\"],\"YJgRqq\":[\"Pseudoinglese\"],\"ibPuCP\":[\"Leggi la documentazione\"],\"v3xM25\":[\"Ricevi un'e-mail contenente il link per l'aggiornamento della password\"],\"dSCufP\":[\"Selezione record\"],\"vpZcGd\":[\"Rigenera una chiave API\"],\"Mwqo5m\":[\"Rigenera chiave\"],\"D+Mv78\":[\"Rigenera chiave\"],\"5icoS1\":[\"Rilasci\"],\"t/YqKh\":[\"Rimuovi\"],\"T/pF0Z\":[\"Rimuovi dai preferiti\"],\"KbS2K9\":[\"Reimposta password\"],\"1IWc1n\":[\"Reimposta a\"],\"kx0s+n\":[\"Risultati\"],\"5dJK4M\":[\"Ruoli\"],\"UX0N2y\":[\"Esegui un workflow e torna qui per visualizzare le esecuzioni\"],\"A1taO8\":[\"Cerca\"],\"8NBMeZ\":[\"Cerca '\",[\"commandMenuSearch\"],\"' con...\"],\"l1/uy2\":[\"Cerca un campo...\"],\"k7kp5/\":[\"Cerca un indice...\"],\"7taA9j\":[\"Cerca campi\"],\"ofuw3g\":[\"Cerca un oggetto...\"],\"IMeaSJ\":[\"Cerca record\"],\"a3LDKx\":[\"Sicurezza\"],\"QREcJS\":[\"Vedi versione attiva\"],\"OpPn5Z\":[\"Vedi esecuzioni\"],\"EtyY4+\":[\"Vedi versioni\"],\"lYhPN0\":[\"Vedi cronologia versioni\"],\"xraglu\":[\"Seleziona gli eventi da inviare a questo endpoint\"],\"AXTJAW\":[\"Seleziona la lingua preferita\"],\"mjK8F3\":[\"Invia un'email di invito al tuo team\"],\"yy5k7a\":[\"Pannello di amministrazione del server\"],\"V7fgiB\":[\"Imposta la visibilità dell'email, gestisci la tua blocklist e altro.\"],\"cx14rp\":[\"Imposta il nome del dominio\"],\"tn41zE\":[\"Imposta il nome del sottodominio\"],\"Tz0i8g\":[\"Impostazioni\"],\"Vy9kmk\":[\"Condividi questo link per invitare gli utenti a unirsi al tuo workspace\"],\"gWk8gY\":[\"Cambiare l'etichetta di un campo deve cambiare anche il nome dell'API?\"],\"5lWFkC\":[\"Accedi\"],\"e+RpCP\":[\"Registrati\"],\"5v3IHX\":[\"Single sign-on (SSO)\"],\"6Uau97\":[\"Salta\"],\"f6Hub0\":[\"Ordina\"],\"65A04M\":[\"Spagnolo\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Sottodominio\"],\"omhc+7\":[\"Sottodominio già in uso\"],\"OlC/tU\":[\"Il sottodominio non può superare i 30 caratteri\"],\"ZETwlU\":[\"Il sottodominio non può essere più corto di 3 caratteri\"],\"B5jRKH\":[\"L'abbonamento è stato cambiato \",[\"to\"]],\"AxQiPW\":[\"Somma\"],\"XYLcNv\":[\"Supporto\"],\"9yk9d1\":[\"Cambia \",[\"from\"]],\"qi74XZ\":[\"Cambia \",[\"to\"]],\"L6Fg36\":[\"Cambia fatturazione \",[\"to\"]],\"AtzMpB\":[\"Sincronizza etichetta campo e nome API\"],\"E3AMmw\":[\"Impostazioni di sistema - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Impostazioni di sistema - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Termini di servizio\"],\"NnH3pK\":[\"Test\"],\"bU9B27\":[\"Test Workflow\"],\"2OUtmv\":[\"Descrizione di questo campo\"],\"VGZYbZ\":[\"L'email associata al tuo account\"],\"h8mvCd\":[\"Nome e icona di questo campo\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"La pagina che cerchi è sparita o non è mai esistita. Torniamo in carreggiata\"],\"uWikAA\":[\"Valori di questo campo\"],\"+69KDk\":[\"I valori di questo campo devono essere unici\"],\"ynfkhb\":[\"Errore durante l'aggiornamento della password.\"],\"PmtLRf\":[\"C'è stato un problema\"],\"hqCwGc\":[\"Questa azione non può essere annullata. Questo eliminerà definitivamente l'utente e lo rimuoverà da tutti i suoi incarichi.\"],\"gWGuHC\":[\"Questa azione non può essere annullata. Questo eliminerà definitivamente l'intero workspace. <0/> Digita la tua email per confermare.\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"Formato ora\"],\"aqMzDX\":[\"a mensile\"],\"WXXiXO\":[\"a annuale\"],\"PiUt3N\":[\"Tipo di trigger\"],\"IQ5pAL\":[\"Il tipo di trigger deve essere Manuale - quando non sono selezionati record\"],\"+zy2Nq\":[\"Tipo\"],\"U83IeL\":[\"Digita qualsiasi cosa\"],\"wSXm5S\":[\"Unico\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"Contatti illimitati\"],\"ONWvwQ\":[\"Carica\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Usa come bozza\"],\"oTTQsc\":[\"Usa solo lettere, numeri e trattini. Inizia e termina con una lettera o un numero\"],\"c6uZUV\":[\"Usa la nostra API o aggiungi manualmente il tuo primo \",[\"objectLabel\"]],\"7PzzBU\":[\"Utente\"],\"IjyOjp\":[\"Utente non connesso\"],\"fXVIZq\":[\"Valori\"],\"KANz0G\":[\"Visualizza dettagli fatturazione\"],\"6n7jtr\":[\"Visualizza\"],\"id6ein\":[\"Supportiamo PNG, JPEG e GIF quadrati fino a 10MB\"],\"ZS7vYp\":[\"Invieremo richieste POST a questo endpoint per ogni nuovo evento\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Benvenuto in \",[\"workspaceName\"]],\"C51ilI\":[\"Quando scadrà la chiave API.\"],\"leUubq\":[\"Quando la chiave sarà disabilitata\"],\"wvyffT\":[\"Il workflow non può essere testato\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Eliminazione Workspace\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"Scrivi una descrizione\"],\"3d1wCB\":[\"sì\"],\"zSkMV0\":[\"Sarai addebitato immediatamente per l'intero anno.\"],\"XVnj6K\":[\"Il tuo saldo di credito verrà utilizzato per pagare le fatture mensili.\"],\"9ivpwk\":[\"Il tuo nome come verrà visualizzato\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Il tuo workspace sarà disabilitato\"]}")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 deleted file mode 100644 index 398b85260..000000000 --- a/packages/twenty-front/src/locales/generated/it.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" di \",[\"fieldLabel\"]],\"uogEAL\":[\"Chiave API \",[\"apiKeyName\"]],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1.000 esecuzioni di nodi del workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configura il campo\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"Interrompi\"],\"uyJsf6\":[\"Informazioni\"],\"AeXO77\":[\"Account\"],\"nD0Y+a\":[\"Eliminazione account\"],\"bPwFdf\":[\"Account\"],\"FQBaXG\":[\"Attiva\"],\"tu8A/k\":[\"Attiva workflow\"],\"F6pfE9\":[\"Attivo\"],\"Mue4oc\":[\"Chiavi API attive create da te o dal tuo team.\"],\"m16xKo\":[\"Aggiungi\"],\"DpV70M\":[\"Aggiungi campo\"],\"dEO3Zx\":[\"Aggiungi oggetto\"],\"sgXUv+\":[\"Aggiungi provider di identità SSO\"],\"5+ttxv\":[\"Aggiungi alla lista di blocco\"],\"pBsoKL\":[\"Aggiungi ai preferiti\"],\"m2qDV8\":[\"Aggiungi il tuo primo \",[\"objectLabel\"]],\"vLO+NG\":[\"Aggiunto \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Tutti\"],\"3saA7W\":[\"Tutti (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Tutti i ruoli\"],\"GMx1K0\":[\"Consenti l'accesso tramite la funzionalità single sign-on di Google.\"],\"dea+zy\":[\"Consenti l'accesso tramite la funzionalità single sign-on di Microsoft.\"],\"wMg43c\":[\"Consenti l'invito di nuovi utenti condividendo un link di invito.\"],\"vHeVg5\":[\"Consenti agli utenti di accedere con e-mail e password.\"],\"LG4K0m\":[\"Si è verificato un errore durante l'aggiornamento della password\"],\"mJ6m4C\":[\"Descrizione opzionale\"],\"HZFm5R\":[\"e\"],\"0RqpZr\":[\"API e Webhook\"],\"yRnk5W\":[\"Chiave API\"],\"5h8ooz\":[\"Chiavi API\"],\"kAtj+q\":[\"Nome API\"],\"aAIQg2\":[\"Aspetto\"],\"3iX0kh\":[\"Sei sicuro di voler cambiare l'intervallo di fatturazione?\"],\"nYD/Cq\":[\"Ascendente\"],\"rfYmIr\":[\"Assegna ruoli per specificare le autorizzazioni di accesso di ogni membro\"],\"lxQ+5m\":[\"Assegnato a\"],\"H8QGSx\":[\"Almeno 8 caratteri.\"],\"Y7Dx6e\":[\"Deve essere abilitato almeno un metodo di autenticazione\"],\"P8fBlG\":[\"Autenticazione\"],\"yIVrHZ\":[\"Autorizza\"],\"3uQmjD\":[\"Media\"],\"Dht9W3\":[\"Torna al contenuto\"],\"R+w/Va\":[\"Fatturazione\"],\"K1172m\":[\"Lista di blocco\"],\"2yl5lQ\":[\"Prenota una chiamata\"],\"8Pfllj\":[\"Utilizzando Twenty, accetti la\"],\"PmmvzS\":[\"Calcola\"],\"AjVXBS\":[\"Calendario\"],\"EUpfsd\":[\"Calendari\"],\"dEgA5A\":[\"Annulla\"],\"0TllC8\":[\"Annulla in qualsiasi momento\"],\"rRK/Lf\":[\"Annulla piano\"],\"N6gPiD\":[\"Annulla l'abbonamento\"],\"OfzMnb\":[\"Cambia \",[\"to\"]],\"VhMDMg\":[\"Cambia password\"],\"SviKkE\":[\"Cinese semplificato\"],\"dzb4Ep\":[\"Cinese tradizionale\"],\"JEFFOR\":[\"Scegli un oggetto\"],\"KT6rEB\":[\"Scegli il tuo fornitore\"],\"9qP96p\":[\"Scegli la tua prova\"],\"yz7wBu\":[\"Chiudi\"],\"+zUMwJ\":[\"Configura una connessione SSO\"],\"QTNsSm\":[\"Configura e personalizza le preferenze del calendario.\"],\"aGwm+D\":[\"Configura la visualizzazione delle date nell'app\"],\"Bh4GBD\":[\"Configura le impostazioni di e-mail e calendario.\"],\"D8ATlr\":[\"Collega un nuovo account al tuo workspace\"],\"Zgi9Fd\":[\"Connettiti con Google\"],\"IOfqM8\":[\"Connettiti con Microsoft\"],\"9TzudL\":[\"Account collegati\"],\"M73whl\":[\"Contesto\"],\"xGVfLh\":[\"Continua\"],\"RvVi9c\":[\"Continua con l'e-mail\"],\"oZyG4C\":[\"Continua con Google\"],\"ztoybH\":[\"Continua con Microsoft\"],\"CcGOj+\":[\"Copilota\"],\"7eVkEH\":[\"Copia il link dell'invito\"],\"Ej5euX\":[\"Copia questa chiave perché non sarà più visibile\"],\"wBMjJ2\":[\"Conteggio\"],\"EkZfen\":[\"Conta tutti\"],\"vQJINq\":[\"Conta vuoti\"],\"DzRsDJ\":[\"Conta non vuoti\"],\"9FZBbf\":[\"Conta valori unici\"],\"zNoOC2\":[\"Crea un workflow e torna qui per visualizzarne le versioni\"],\"uXGLuq\":[\"Crea chiave API\"],\"d0DCww\":[\"Crea nuovo record\"],\"dkAPxi\":[\"Crea webhook\"],\"8skTDV\":[\"Oggetti personalizzati\"],\"qt+EaC\":[\"Personalizza i campi disponibili nelle viste \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personalizza dominio\"],\"bCJa9l\":[\"Personalizza la sicurezza del tuo workspace\"],\"Zz6Cxn\":[\"Zona pericolosa\"],\"5cNMFz\":[\"Modello dati\"],\"r+cVRP\":[\"Tipo di dati\"],\"mYGY3B\":[\"Data\"],\"Ud9zHv\":[\"Data e ora\"],\"5y3O+A\":[\"Disattiva\"],\"qk4i22\":[\"Disattiva \\\"Sincronizza etichette oggetti e nomi API\\\" per impostare un nome API personalizzato\"],\"gexAq8\":[\"Disattiva questo campo\"],\"4tpC8V\":[\"Disattiva workflow\"],\"Y2ImVJ\":[\"Definisci il nome e la descrizione dell'oggetto\"],\"cnGeoo\":[\"Elimina\"],\"ZDGm40\":[\"Elimina account\"],\"gAz0S5\":[\"Elimina l'account e tutti i dati associati\"],\"hGfWDm\":[\"Elimina chiave API\"],\"4dpwsE\":[\"Elimina record\"],\"kf0A63\":[\"Elimina record\"],\"T6S2Ns\":[\"Elimina questa integrazione\"],\"snMaH4\":[\"Elimina webhook\"],\"kYu0eF\":[\"Elimina workspace\"],\"mk2Ygs\":[\"Elimina l'intero workspace\"],\"Cko536\":[\"Discendente\"],\"Nu4oKW\":[\"Descrizione\"],\"2xxBws\":[\"Distruggi\"],\"n+SX4g\":[\"Sviluppatori\"],\"zAg2B9\":[\"Scarta bozza\"],\"i66xz9\":[\"Visualizza come data relativa\"],\"EoKe5U\":[\"Dominio\"],\"QVVmxi\":[\"Es. integrazione backoffice\"],\"tOkc8o\":[\"Più antico\"],\"JTbQuO\":[\"Data più antica\"],\"v+uKyy\":[\"Modifica intervallo di fatturazione\"],\"h2KoTu\":[\"Modifica il metodo di pagamento, visualizza le fatture e altro\"],\"6o1M/Q\":[\"Modifica il nome del sottodominio o imposta un dominio personalizzato.\"],\"O3oNi5\":[\"Email\"],\"lfQsvW\":[\"Integrazione e-mail\"],\"QT/Wo7\":[\"L'e-mail o il dominio è già presente nella lista di blocco\"],\"BXEcos\":[\"Email\"],\"eXoH4Q\":[\"dipendenti\"],\"gqv5ZL\":[\"Dipendenti\"],\"N2S1rs\":[\"Vuoto\"],\"T3juzf\":[\"URL endpoint\"],\"lYGfRP\":[\"Inglese\"],\"/bfFKe\":[\"Goditi una prova gratuita di \",[\"withCreditCardTrialPeriodDuration\"],\" giorni\"],\"GpB8YV\":[\"Enterprise\"],\"c3qGJX\":[\"Errore nell'eliminazione della chiave API: \",[\"err\"]],\"bj7nh3\":[\"Errore nella rigenerazione della chiave API: \",[\"err\"]],\"VSQxWH\":[\"Errore durante il cambio di abbonamento \",[\"to\"],\".\"],\"JLxMta\":[\"Stabilisci endpoint Webhook per le notifiche di eventi asincroni.\"],\"cIgBjB\":[\"Escludi le seguenti persone e domini dalla mia sincronizzazione e-mail\"],\"fV7V51\":[\"Oggetti esistenti\"],\"IZ4o2e\":[\"Esci dalle impostazioni\"],\"tXGQvS\":[\"Il nodo selezionato deve essere un nodo di creazione di passi.\"],\"bKBhgb\":[\"Esperienza\"],\"LxRNPw\":[\"Scadenza\"],\"SkXfL0\":[\"Data di scadenza\"],\"i9qiyR\":[\"Scade tra\"],\"GS+Mus\":[\"Esporta\"],\"ep2rbf\":[\"Esporta record\"],\"q46CjD\":[\"Esporta in PDF\"],\"DaGxE0\":[\"Esporta vista\"],\"X9kySA\":[\"Preferiti\"],\"zXgopL\":[\"Tipo di campo\"],\"vF68cg\":[\"Campi\"],\"3w/aqw\":[\"Conteggio campi\"],\"o7J4JM\":[\"Filtro\"],\"cSev+j\":[\"Filtri\"],\"glx6on\":[\"Hai dimenticato la password?\"],\"nLC6tu\":[\"Francese\"],\"aTieE0\":[\"da mensile ad annuale\"],\"K04lE5\":[\"da annuale a mensile\"],\"scmRyR\":[\"Accesso completo\"],\"xANKBj\":[\"Funzioni\"],\"Weq9zb\":[\"Generale\"],\"DDcvSo\":[\"Tedesco\"],\"NXEW3h\":[\"Sfrutta al massimo il tuo spazio di lavoro invitando il tuo team.\"],\"zSGbaR\":[\"Ottieni il tuo abbonamento\"],\"2GT3Hf\":[\"Globale\"],\"hWp1MY\":[\"Concedi al supporto Twenty l'accesso temporaneo al tuo spazio di lavoro per risolvere problemi o recuperare contenuti per tuo conto. Puoi revocare l'accesso in qualsiasi momento.\"],\"vLyv1R\":[\"Nascondi\"],\"XTWO+W\":[\"Icona e nome\"],\"sJGljQ\":[\"Identificatore\"],\"j843N3\":[\"Se hai perso questa chiave, puoi rigenerarla, ma sappi che qualsiasi script che utilizza questa chiave dovrà essere aggiornato. Digita \\\"\",[\"confirmationValue\"],\"\\\" per confermare.\"],\"NoNwIX\":[\"Inattivo\"],\"pZ/USH\":[\"Indici\"],\"JE2tjr\":[\"L'input deve essere in camel case e non può iniziare con un numero\"],\"AwUsnG\":[\"Istanze\"],\"nbfdhU\":[\"Integrazioni\"],\"NtFk/Z\":[\"Provider di autenticazione non valido\"],\"B2Tpo0\":[\"Email non valida\"],\"/m52AE\":[\"Email o dominio non valido\"],\"QdoUFL\":[\"Valori del modulo non validi\"],\"0M8+El\":[\"Invita via e-mail\"],\"PWIq/W\":[\"Invita tramite link\"],\"3athPG\":[\"Invita tramite link\"],\"5IfmKA\":[\"Link di invito inviato agli indirizzi e-mail\"],\"d+Y+rP\":[\"Invita il tuo team\"],\"Lj7sBL\":[\"Italiano\"],\"dFtidv\":[\"Giapponese\"],\"h6S9Yz\":[\"Coreano\"],\"zrpwCd\":[\"Lab\"],\"vXIe7J\":[\"Lingua\"],\"wL3cK8\":[\"Ultimo\"],\"Kcjbmz\":[\"Ultima data\"],\"pQjjYo\":[\"Link copiato negli appunti\"],\"FgAxTj\":[\"Disconnetti\"],\"nOhz3x\":[\"Disconnessione\"],\"T6YjCk\":[\"Gestisci membri\"],\"4cjU2u\":[\"Gestisci qui i membri del tuo spazio\"],\"FyFNsd\":[\"Gestisci i tuoi account Internet.\"],\"36kYu0\":[\"Gestisci il tuo abbonamento\"],\"3Sdni6\":[\"Segna come fatto\"],\"CK1KXz\":[\"Massimo\"],\"wlQNTg\":[\"Membri\"],\"eTUF28\":[\"Minimo\"],\"3Siwmw\":[\"Altre opzioni\"],\"iSLA/r\":[\"Sposta a sinistra\"],\"Ubl2by\":[\"Sposta a destra\"],\"6YtxFj\":[\"Nome\"],\"z+6jaZ\":[\"Nome della chiave API\"],\"J7w8lI\":[\"Nome del tuo spazio di lavoro\"],\"2T8KCk\":[\"Vai al record successivo\"],\"veSA19\":[\"Vai alla versione successiva\"],\"ZTEho+\":[\"Vai al workflow successivo\"],\"2tw9bo\":[\"Vai al record precedente\"],\"I+Pm5V\":[\"Vai alla versione precedente\"],\"QVUN3K\":[\"Vai al workflow precedente\"],\"isRobC\":[\"Nuovo\"],\"Kcr9Fr\":[\"Nuovo account\"],\"o8MyXb\":[\"Nuova chiave\"],\"j313SZ\":[\"Nuova chiave\"],\"hFxdey\":[\"Nuovo oggetto\"],\"7vhWI8\":[\"Nuova password\"],\"BcCzLv\":[\"Nuovo record\"],\"2lmOC5\":[\"Nuovo ruolo\"],\"U1DAok\":[\"Nuovo Webhook\"],\"pwenQu\":[\"Nessun account collegato\"],\"0uWxPM\":[\"Nessuna esecuzione del workflow\"],\"AQCvCC\":[\"Nessuna versione del workflow\"],\"4wUkDk\":[\"Non vuoto\"],\"W0i24j\":[\"Oggetto\"],\"B3toQF\":[\"Oggetti\"],\"KNz3EF\":[\"Fuori dai sentieri battuti\"],\"OV5wZZ\":[\"Aperto\"],\"0zpgxV\":[\"Opzioni\"],\"BzEFor\":[\"o\"],\"/IX/7x\":[\"Altro\"],\"boJlGf\":[\"Pagina non trovata\"],\"8ZsakT\":[\"Password\"],\"BxQ79w\":[\"La password è stata aggiornata\"],\"mi6Rel\":[\"Il link per reimpostare la password è stato inviato all'e-mail\"],\"SrVzRe\":[\"Percentuale\"],\"yIK1GU\":[\"Percentuale vuoto\"],\"PWLd4c\":[\"Percentuale non vuoto\"],\"Bv3y5w\":[\"Distruggi definitivamente il record\"],\"N0+GsR\":[\"Immagine\"],\"jEw0Mr\":[\"Inserisci un URL valido\"],\"6nsIo3\":[\"Digita \\\"\",[\"confirmationValue\"],\"\\\" per confermare che vuoi eliminare questa chiave API. Tieni presente che qualsiasi script che utilizza questa chiave smetterà di funzionare.\"],\"mFZTXr\":[\"Digita \",[\"confirmationText\"],\" per confermare che vuoi eliminare questo webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Portoghese - Brasile\"],\"xtXHeo\":[\"Portoghese - Portogallo\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Anteprima\"],\"LcET2C\":[\"Informativa sulla privacy\"],\"vERlcd\":[\"Profilo\"],\"YJgRqq\":[\"Pseudoinglese\"],\"ibPuCP\":[\"Leggi la documentazione\"],\"v3xM25\":[\"Ricevi un'e-mail contenente il link per l'aggiornamento della password\"],\"dSCufP\":[\"Selezione record\"],\"vpZcGd\":[\"Rigenera una chiave API\"],\"Mwqo5m\":[\"Rigenera chiave\"],\"D+Mv78\":[\"Rigenera chiave\"],\"5icoS1\":[\"Rilasci\"],\"t/YqKh\":[\"Rimuovi\"],\"T/pF0Z\":[\"Rimuovi dai preferiti\"],\"KbS2K9\":[\"Reimposta password\"],\"1IWc1n\":[\"Reimposta a\"],\"kx0s+n\":[\"Risultati\"],\"5dJK4M\":[\"Ruoli\"],\"UX0N2y\":[\"Esegui un workflow e torna qui per visualizzare le esecuzioni\"],\"A1taO8\":[\"Cerca\"],\"8NBMeZ\":[\"Cerca '\",[\"commandMenuSearch\"],\"' con...\"],\"l1/uy2\":[\"Cerca un campo...\"],\"k7kp5/\":[\"Cerca un indice...\"],\"7taA9j\":[\"Cerca campi\"],\"ofuw3g\":[\"Cerca un oggetto...\"],\"IMeaSJ\":[\"Cerca record\"],\"a3LDKx\":[\"Sicurezza\"],\"QREcJS\":[\"Vedi versione attiva\"],\"OpPn5Z\":[\"Vedi esecuzioni\"],\"EtyY4+\":[\"Vedi versioni\"],\"lYhPN0\":[\"Vedi cronologia versioni\"],\"xraglu\":[\"Seleziona gli eventi da inviare a questo endpoint\"],\"AXTJAW\":[\"Seleziona la lingua preferita\"],\"mjK8F3\":[\"Invia un'email di invito al tuo team\"],\"yy5k7a\":[\"Pannello di amministrazione del server\"],\"V7fgiB\":[\"Imposta la visibilità dell'email, gestisci la tua blocklist e altro.\"],\"cx14rp\":[\"Imposta il nome del dominio\"],\"tn41zE\":[\"Imposta il nome del sottodominio\"],\"Tz0i8g\":[\"Impostazioni\"],\"Vy9kmk\":[\"Condividi questo link per invitare gli utenti a unirsi al tuo workspace\"],\"gWk8gY\":[\"Cambiare l'etichetta di un campo deve cambiare anche il nome dell'API?\"],\"5lWFkC\":[\"Accedi\"],\"e+RpCP\":[\"Registrati\"],\"5v3IHX\":[\"Single sign-on (SSO)\"],\"6Uau97\":[\"Salta\"],\"f6Hub0\":[\"Ordina\"],\"65A04M\":[\"Spagnolo\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Sottodominio\"],\"omhc+7\":[\"Sottodominio già in uso\"],\"OlC/tU\":[\"Il sottodominio non può superare i 30 caratteri\"],\"ZETwlU\":[\"Il sottodominio non può essere più corto di 3 caratteri\"],\"B5jRKH\":[\"L'abbonamento è stato cambiato \",[\"to\"]],\"AxQiPW\":[\"Somma\"],\"XYLcNv\":[\"Supporto\"],\"9yk9d1\":[\"Cambia \",[\"from\"]],\"qi74XZ\":[\"Cambia \",[\"to\"]],\"L6Fg36\":[\"Cambia fatturazione \",[\"to\"]],\"AtzMpB\":[\"Sincronizza etichetta campo e nome API\"],\"E3AMmw\":[\"Impostazioni di sistema - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Impostazioni di sistema - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Termini di servizio\"],\"NnH3pK\":[\"Test\"],\"bU9B27\":[\"Test Workflow\"],\"2OUtmv\":[\"Descrizione di questo campo\"],\"VGZYbZ\":[\"L'email associata al tuo account\"],\"h8mvCd\":[\"Nome e icona di questo campo\"],\"L97sPr\":[\"La pagina che cerchi è sparita o non è mai esistita. Torniamo in carreggiata\"],\"uWikAA\":[\"Valori di questo campo\"],\"+69KDk\":[\"I valori di questo campo devono essere unici\"],\"ynfkhb\":[\"Errore durante l'aggiornamento della password.\"],\"PmtLRf\":[\"C'è stato un problema\"],\"hqCwGc\":[\"Questa azione non può essere annullata. Questo eliminerà definitivamente l'utente e lo rimuoverà da tutti i suoi incarichi.\"],\"gWGuHC\":[\"Questa azione non può essere annullata. Questo eliminerà definitivamente l'intero workspace. <0/> Digita la tua email per confermare.\"],\"n9nSNJ\":[\"Formato ora\"],\"aqMzDX\":[\"a mensile\"],\"WXXiXO\":[\"a annuale\"],\"PiUt3N\":[\"Tipo di trigger\"],\"IQ5pAL\":[\"Il tipo di trigger deve essere Manuale - quando non sono selezionati record\"],\"+zy2Nq\":[\"Tipo\"],\"U83IeL\":[\"Digita qualsiasi cosa\"],\"wSXm5S\":[\"Unico\"],\"GQCXQS\":[\"Contatti illimitati\"],\"ONWvwQ\":[\"Carica\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Usa come bozza\"],\"oTTQsc\":[\"Usa solo lettere, numeri e trattini. Inizia e termina con una lettera o un numero\"],\"c6uZUV\":[\"Usa la nostra API o aggiungi manualmente il tuo primo \",[\"objectLabel\"]],\"7PzzBU\":[\"Utente\"],\"IjyOjp\":[\"Utente non connesso\"],\"fXVIZq\":[\"Valori\"],\"KANz0G\":[\"Visualizza dettagli fatturazione\"],\"6n7jtr\":[\"Visualizza\"],\"id6ein\":[\"Supportiamo PNG, JPEG e GIF quadrati fino a 10MB\"],\"ZS7vYp\":[\"Invieremo richieste POST a questo endpoint per ogni nuovo evento\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Benvenuto in \",[\"workspaceName\"]],\"C51ilI\":[\"Quando scadrà la chiave API.\"],\"leUubq\":[\"Quando la chiave sarà disabilitata\"],\"wvyffT\":[\"Il workflow non può essere testato\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Eliminazione Workspace\"],\"Q9pNST\":[\"Scrivi una descrizione\"],\"3d1wCB\":[\"sì\"],\"zSkMV0\":[\"Sarai addebitato immediatamente per l'intero anno.\"],\"XVnj6K\":[\"Il tuo saldo di credito verrà utilizzato per pagare le fatture mensili.\"],\"9ivpwk\":[\"Il tuo nome come verrà visualizzato\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Il tuo workspace sarà disabilitato\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/ja-JP.ts b/packages/twenty-front/src/locales/generated/ja-JP.ts new file mode 100644 index 000000000..84b038f5f --- /dev/null +++ b/packages/twenty-front/src/locales/generated/ja-JP.ts @@ -0,0 +1 @@ +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"fieldLabel\"],\"の\",[\"aggregateLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" APIキー\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1,000 ワークフローノード実行\"],\"4EdXYs\":[\"12時間 (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. フィールドの設定\"],\"QsMprd\":[\"24時間 (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"中止\"],\"uyJsf6\":[\"概要\"],\"AeXO77\":[\"アカウント\"],\"nD0Y+a\":[\"アカウント削除\"],\"bPwFdf\":[\"アカウント\"],\"FQBaXG\":[\"有効化\"],\"tu8A/k\":[\"ワークフローを有効化\"],\"F6pfE9\":[\"アクティブ\"],\"Mue4oc\":[\"あなたまたはチームが作成したアクティブなAPIキー。\"],\"m16xKo\":[\"追加\"],\"DpV70M\":[\"フィールドを追加\"],\"dEO3Zx\":[\"オブジェクトを追加\"],\"sgXUv+\":[\"SSOアイデンティティプロバイダーを追加\"],\"5+ttxv\":[\"ブロックリストに追加\"],\"pBsoKL\":[\"お気に入りに追加\"],\"m2qDV8\":[\"最初の\",[\"objectLabel\"],\"を追加\"],\"vLO+NG\":[[\"beautifiedCreatedAt\"],\"に追加\"],\"N40H+G\":[\"すべて\"],\"3saA7W\":[\"すべて (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"すべてのロール\"],\"GMx1K0\":[\"Googleのシングルサインオン機能でログインを許可する。\"],\"dea+zy\":[\"Microsoftのシングルサインオン機能でログインを許可する。\"],\"wMg43c\":[\"招待リンクを共有して新規ユーザーを招待する。\"],\"vHeVg5\":[\"ユーザーがメールとパスワードでサインインできるようにする。\"],\"LG4K0m\":[\"パスワードの更新中にエラーが発生しました\"],\"mJ6m4C\":[\"任意の説明\"],\"HZFm5R\":[\"および\"],\"0RqpZr\":[\"API & Webhooks\"],\"yRnk5W\":[\"APIキー\"],\"5h8ooz\":[\"APIキー\"],\"kAtj+q\":[\"API名\"],\"aAIQg2\":[\"外観\"],\"3iX0kh\":[\"請求間隔を変更してもよろしいですか?\"],\"nYD/Cq\":[\"昇順\"],\"rfYmIr\":[\"各メンバーのアクセス権限を指定するロールを割り当てる\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"担当\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"8文字以上。\"],\"Y7Dx6e\":[\"少なくとも1つの認証方法を有効にする必要があります\"],\"P8fBlG\":[\"認証\"],\"yIVrHZ\":[\"認可する\"],\"3uQmjD\":[\"平均\"],\"Dht9W3\":[\"コンテンツに戻る\"],\"R+w/Va\":[\"請求\"],\"K1172m\":[\"ブロックリスト\"],\"2yl5lQ\":[\"電話予約\"],\"8Pfllj\":[\"Twentyを利用することにより、以下の事項に同意したものとみなされます。\"],\"PmmvzS\":[\"計算\"],\"AjVXBS\":[\"カレンダー\"],\"EUpfsd\":[\"カレンダー\"],\"dEgA5A\":[\"キャンセル\"],\"0TllC8\":[\"いつでもキャンセル可能\"],\"rRK/Lf\":[\"プランをキャンセル\"],\"N6gPiD\":[\"サブスクリプションをキャンセル\"],\"OfzMnb\":[[\"to\"],\"に変更\"],\"VhMDMg\":[\"パスワードを変更\"],\"SviKkE\":[\"中国語(簡体字)\"],\"dzb4Ep\":[\"中国語(繁体字)\"],\"JEFFOR\":[\"オブジェクトを選択\"],\"KT6rEB\":[\"プロバイダーを選択\"],\"9qP96p\":[\"トライアルを選択\"],\"yz7wBu\":[\"閉じる\"],\"+zUMwJ\":[\"SSO接続を設定\"],\"QTNsSm\":[\"カレンダーの設定を行い、カスタマイズする。\"],\"aGwm+D\":[\"アプリ全体の日付の表示方法を設定\"],\"Bh4GBD\":[\"メールとカレンダーの設定を行う。\"],\"D8ATlr\":[\"新しいアカウントをワークスペースに接続\"],\"Zgi9Fd\":[\"Googleと接続\"],\"IOfqM8\":[\"Microsoftと接続\"],\"9TzudL\":[\"接続されたアカウント\"],\"M73whl\":[\"コンテキスト\"],\"xGVfLh\":[\"続行\"],\"RvVi9c\":[\"メールで続行\"],\"oZyG4C\":[\"Googleで続行\"],\"ztoybH\":[\"Microsoftで続行\"],\"CcGOj+\":[\"コパイロット\"],\"7eVkEH\":[\"招待リンクをコピー\"],\"Ej5euX\":[\"このキーは再表示されないため、コピーしてください\"],\"wBMjJ2\":[\"カウント\"],\"EkZfen\":[\"すべてをカウント\"],\"vQJINq\":[\"空をカウント\"],\"DzRsDJ\":[\"空でないものをカウント\"],\"9FZBbf\":[\"一意の値をカウント\"],\"zNoOC2\":[\"ワークフローを作成し、ここに戻ってそのバージョンを表示\"],\"uXGLuq\":[\"APIキーを作成\"],\"d0DCww\":[\"新しいレコードを作成\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"Webhookを作成\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"カスタムオブジェクト\"],\"qt+EaC\":[[\"objectLabelSingular\"],\"ビューで利用可能なフィールドをカスタマイズ\"],\"CMhr4u\":[\"ドメインをカスタマイズ\"],\"bCJa9l\":[\"ワークスペースのセキュリティをカスタマイズ\"],\"Zz6Cxn\":[\"危険ゾーン\"],\"5cNMFz\":[\"データモデル\"],\"r+cVRP\":[\"データ型\"],\"mYGY3B\":[\"日付\"],\"Ud9zHv\":[\"日付と時間\"],\"5y3O+A\":[\"無効化\"],\"qk4i22\":[\"カスタムAPI名を設定するには、「オブジェクトラベルとAPI名の同期」を無効にする\"],\"gexAq8\":[\"このフィールドを無効化\"],\"4tpC8V\":[\"ワークフローを無効化\"],\"Y2ImVJ\":[\"オブジェクトの名前と説明を定義\"],\"cnGeoo\":[\"削除\"],\"ZDGm40\":[\"アカウントを削除\"],\"gAz0S5\":[\"アカウントと関連データをすべて削除\"],\"hGfWDm\":[\"APIキーを削除\"],\"4dpwsE\":[\"レコードを削除\"],\"kf0A63\":[\"レコードを削除\"],\"T6S2Ns\":[\"この統合を削除\"],\"snMaH4\":[\"Webhookを削除\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"ワークスペースを削除\"],\"mk2Ygs\":[\"ワークスペース全体を削除\"],\"Cko536\":[\"降順\"],\"Nu4oKW\":[\"説明\"],\"2xxBws\":[\"破棄\"],\"n+SX4g\":[\"開発者\"],\"zAg2B9\":[\"下書きを破棄\"],\"i66xz9\":[\"相対日付で表示\"],\"EoKe5U\":[\"ドメイン\"],\"QVVmxi\":[\"例:バックオフィス統合\"],\"tOkc8o\":[\"最も早い\"],\"JTbQuO\":[\"最も早い日付\"],\"v+uKyy\":[\"請求間隔を編集\"],\"h2KoTu\":[\"支払い方法の編集、請求書の確認など\"],\"6o1M/Q\":[\"サブドメイン名を編集するか、カスタムドメインを設定する。\"],\"O3oNi5\":[\"メール\"],\"lfQsvW\":[\"メール統合\"],\"QT/Wo7\":[\"メールまたはドメインはすでにブロックリストに登録されています\"],\"BXEcos\":[\"メール\"],\"eXoH4Q\":[\"社員\"],\"gqv5ZL\":[\"従業員\"],\"N2S1rs\":[\"空\"],\"T3juzf\":[\"エンドポイントURL\"],\"lYGfRP\":[\"英語\"],\"/bfFKe\":[[\"withCreditCardTrialPeriodDuration\"],\"日間の無料トライアルをお楽しみください。\"],\"GpB8YV\":[\"エンタープライズ\"],\"c3qGJX\":[\"APIキーの削除エラー:\",[\"err\"]],\"bj7nh3\":[\"APIキーの再生成エラー:\",[\"err\"]],\"VSQxWH\":[\"サブスクリプション\",[\"to\"],\"の切り替え中にエラーが発生しました。\"],\"JLxMta\":[\"非同期イベントの通知用にWebhookエンドポイントを設定する。\"],\"cIgBjB\":[\"以下の人とドメインをメール同期から除外する\"],\"fV7V51\":[\"既存のオブジェクト\"],\"IZ4o2e\":[\"設定を終了\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"経験\"],\"LxRNPw\":[\"有効期限\"],\"SkXfL0\":[\"有効期限\"],\"i9qiyR\":[\"有効期限\"],\"GS+Mus\":[\"エクスポート\"],\"ep2rbf\":[\"レコードをエクスポート\"],\"q46CjD\":[\"PDFにエクスポート\"],\"DaGxE0\":[\"ビューをエクスポート\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"お気に入り\"],\"zXgopL\":[\"フィールドタイプ\"],\"vF68cg\":[\"フィールド\"],\"3w/aqw\":[\"フィールド数\"],\"o7J4JM\":[\"フィルター\"],\"cSev+j\":[\"フィルター\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"パスワードを忘れましたか?\"],\"nLC6tu\":[\"フランス語\"],\"aTieE0\":[\"月払いから年払いへ\"],\"K04lE5\":[\"年払いから月払いへ\"],\"scmRyR\":[\"フルアクセス\"],\"xANKBj\":[\"機能\"],\"Weq9zb\":[\"一般\"],\"DDcvSo\":[\"ドイツ語\"],\"NXEW3h\":[\"チームを招待して、ワークスペースを最大限に活用しましょう。\"],\"zSGbaR\":[\"サブスクリプションを取得\"],\"2GT3Hf\":[\"グローバル\"],\"hWp1MY\":[\"Twentyサポートに一時的なアクセスを許可して、問題のトラブルシューティングやコンテンツの復旧を行います。アクセスはいつでも取り消せます。\"],\"vLyv1R\":[\"非表示\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"アイコンと名前\"],\"sJGljQ\":[\"識別子\"],\"j843N3\":[\"このキーを紛失した場合は再生成できますが、このキーを使用しているスクリプトは更新が必要です。確認のために\\\"\",[\"confirmationValue\"],\"\\\"と入力してください。\"],\"NoNwIX\":[\"非アクティブ\"],\"pZ/USH\":[\"インデックス\"],\"JE2tjr\":[\"入力はキャメルケースで、数字で始めることはできません。\"],\"AwUsnG\":[\"インスタンス\"],\"nbfdhU\":[\"統合\"],\"NtFk/Z\":[\"無効な認証プロバイダー\"],\"B2Tpo0\":[\"無効なメールアドレス\"],\"/m52AE\":[\"無効なメールアドレスまたはドメイン\"],\"QdoUFL\":[\"無効なフォーム値\"],\"0M8+El\":[\"メールで招待\"],\"PWIq/W\":[\"リンクで招待\"],\"3athPG\":[\"リンクで招待\"],\"5IfmKA\":[\"招待リンクがメールアドレスに送信されました\"],\"d+Y+rP\":[\"チームを招待\"],\"Lj7sBL\":[\"イタリア語\"],\"dFtidv\":[\"日本語\"],\"h6S9Yz\":[\"韓国語\"],\"zrpwCd\":[\"ラボ\"],\"vXIe7J\":[\"言語\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"最新\"],\"Kcjbmz\":[\"最新の日付\"],\"pQjjYo\":[\"リンクがクリップボードにコピーされました\"],\"FgAxTj\":[\"ログアウト\"],\"nOhz3x\":[\"ログアウト\"],\"T6YjCk\":[\"メンバー管理\"],\"4cjU2u\":[\"ここでスペースのメンバーを管理\"],\"FyFNsd\":[\"インターネットアカウントを管理\"],\"36kYu0\":[\"サブスクリプションを管理\"],\"3Sdni6\":[\"完了としてマーク\"],\"CK1KXz\":[\"最大\"],\"wlQNTg\":[\"メンバー\"],\"eTUF28\":[\"最小\"],\"3Siwmw\":[\"その他のオプション\"],\"iSLA/r\":[\"左に移動\"],\"Ubl2by\":[\"右に移動\"],\"6YtxFj\":[\"名前\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"APIキーの名前\"],\"J7w8lI\":[\"ワークスペースの名前\"],\"2T8KCk\":[\"次のレコードに移動\"],\"veSA19\":[\"次のバージョンに移動\"],\"ZTEho+\":[\"次のワークフローに移動\"],\"2tw9bo\":[\"前のレコードに移動\"],\"I+Pm5V\":[\"前のバージョンに移動\"],\"QVUN3K\":[\"前のワークフローに移動\"],\"isRobC\":[\"新規\"],\"Kcr9Fr\":[\"新しいアカウント\"],\"o8MyXb\":[\"新しいキー\"],\"j313SZ\":[\"新しいキー\"],\"hFxdey\":[\"新しいオブジェクト\"],\"7vhWI8\":[\"新しいパスワード\"],\"BcCzLv\":[\"新しいレコード\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"新しいWebhook\"],\"pwenQu\":[\"接続されたアカウントがありません\"],\"0uWxPM\":[\"ワークフローはまだ実行されていません\"],\"AQCvCC\":[\"ワークフローのバージョンはまだありません\"],\"4wUkDk\":[\"空ではない\"],\"W0i24j\":[\"オブジェクト\"],\"B3toQF\":[\"オブジェクト\"],\"KNz3EF\":[\"道を外れた\"],\"OV5wZZ\":[\"開いた\"],\"0zpgxV\":[\"オプション\"],\"BzEFor\":[\"または\"],\"/IX/7x\":[\"その他\"],\"boJlGf\":[\"ページが見つかりません\"],\"8ZsakT\":[\"パスワード\"],\"BxQ79w\":[\"パスワードが更新されました\"],\"mi6Rel\":[\"パスワードリセットリンクがメールに送信されました\"],\"SrVzRe\":[\"パーセント\"],\"yIK1GU\":[\"空の割合\"],\"PWLd4c\":[\"空でない割合\"],\"Bv3y5w\":[\"レコードを永久に削除\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"写真\"],\"jEw0Mr\":[\"有効なURLを入力してください\"],\"6nsIo3\":[\"\\\"\",[\"confirmationValue\"],\"\\\"と入力して、このAPIキーを削除することを確認してください。このキーを使用しているスクリプトは動作しなくなりますのでご注意ください。\"],\"mFZTXr\":[[\"confirmationText\"],\"と入力して、このWebhookを削除することを確認してください。\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"ポルトガル語 - ブラジル\"],\"xtXHeo\":[\"ポルトガル語 - ポルトガル\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"プレビュー\"],\"LcET2C\":[\"プライバシーポリシー\"],\"vERlcd\":[\"プロフィール\"],\"YJgRqq\":[\"擬似英語\"],\"ibPuCP\":[\"ドキュメントを読む\"],\"v3xM25\":[\"パスワード更新リンクを含むメールを受け取る\"],\"dSCufP\":[\"レコード選択\"],\"vpZcGd\":[\"APIキーを再生成\"],\"Mwqo5m\":[\"キーを再生成\"],\"D+Mv78\":[\"キーを再生成\"],\"5icoS1\":[\"リリース\"],\"t/YqKh\":[\"削除\"],\"T/pF0Z\":[\"お気に入りから削除\"],\"KbS2K9\":[\"パスワードをリセット\"],\"1IWc1n\":[\"リセット\"],\"kx0s+n\":[\"結果\"],\"5dJK4M\":[\"役割\"],\"UX0N2y\":[\"ワークフローを実行し、その実行内容を見るためにここに戻る\"],\"A1taO8\":[\"検索\"],\"8NBMeZ\":[\"'\",[\"commandMenuSearch\"],\"'で検索...\"],\"l1/uy2\":[\"フィールドを検索...\"],\"k7kp5/\":[\"インデックスを検索...\"],\"7taA9j\":[\"フィールドを検索\"],\"ofuw3g\":[\"オブジェクトを検索...\"],\"IMeaSJ\":[\"レコードを検索\"],\"a3LDKx\":[\"セキュリティ\"],\"QREcJS\":[\"アクティブバージョンを見る\"],\"OpPn5Z\":[\"実行を見る\"],\"EtyY4+\":[\"バージョンを見る\"],\"lYhPN0\":[\"バージョン履歴を見る\"],\"xraglu\":[\"このエンドポイントに送信したいイベントを選択してください\"],\"AXTJAW\":[\"希望の言語を選択してください\"],\"mjK8F3\":[\"チームに招待メールを送信\"],\"yy5k7a\":[\"サーバー管理パネル\"],\"V7fgiB\":[\"メールの可視性を設定し、ブロックリストを管理するなど。\"],\"cx14rp\":[\"ドメイン名を設定\"],\"tn41zE\":[\"サブドメイン名を設定\"],\"Tz0i8g\":[\"設定\"],\"Vy9kmk\":[\"このリンクを共有して、ユーザーをワークスペースに招待\"],\"gWk8gY\":[\"フィールドのラベルを変更すると、API名も変更されますか?\"],\"5lWFkC\":[\"サインイン\"],\"e+RpCP\":[\"サインアップ\"],\"5v3IHX\":[\"シングルサインオン (SSO)\"],\"6Uau97\":[\"スキップ\"],\"f6Hub0\":[\"ソート\"],\"65A04M\":[\"スペイン語\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"サブドメイン\"],\"omhc+7\":[\"サブドメインは既に使用されています\"],\"OlC/tU\":[\"サブドメインは30文字以内にしてください\"],\"ZETwlU\":[\"サブドメインは3文字以上にしてください\"],\"B5jRKH\":[\"サブスクリプションが\",[\"to\"],\"に切り替わりました\"],\"AxQiPW\":[\"合計\"],\"XYLcNv\":[\"サポート\"],\"9yk9d1\":[[\"from\"],\"から切り替える\"],\"qi74XZ\":[[\"to\"],\"に切り替える\"],\"L6Fg36\":[\"請求を\",[\"to\"],\"に切り替える\"],\"AtzMpB\":[\"フィールドラベルとAPI名を同期する\"],\"E3AMmw\":[\"システム設定 - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"システム設定 - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"利用規約\"],\"NnH3pK\":[\"テスト\"],\"bU9B27\":[\"テストワークフロー\"],\"2OUtmv\":[\"このフィールドの説明\"],\"VGZYbZ\":[\"アカウントに関連付けられたメール\"],\"h8mvCd\":[\"このフィールドの名前とアイコン\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"お探しのページは存在しないか、削除されました。元のページに戻りましょう\"],\"uWikAA\":[\"このフィールドの値\"],\"+69KDk\":[\"このフィールドの値は一意でなければなりません\"],\"ynfkhb\":[\"パスワードの更新中にエラーが発生しました\"],\"PmtLRf\":[\"問題が発生しました\"],\"hqCwGc\":[\"この操作は取り消せません。このユーザーは永久に削除され、すべての割り当てから削除されます\"],\"gWGuHC\":[\"この操作は取り消せません。ワークスペース全体が永久に削除されます。<0/> 確認のため、メールアドレスを入力してください\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"時間形式\"],\"aqMzDX\":[\"月払いへ\"],\"WXXiXO\":[\"年払いへ\"],\"PiUt3N\":[\"トリガータイプ\"],\"IQ5pAL\":[\"トリガータイプは、レコードが選択されていない場合は「手動」にする必要があります\"],\"+zy2Nq\":[\"タイプ\"],\"U83IeL\":[\"何でも入力\"],\"wSXm5S\":[\"一意\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"連絡先無制限\"],\"ONWvwQ\":[\"アップロード\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"ドラフトとして使用\"],\"oTTQsc\":[\"文字、数字、ダッシュのみ使用可能。文字または数字で始め、文字または数字で終わる\"],\"c6uZUV\":[\"APIを使用するか、最初の\",[\"objectLabel\"],\"を手動で追加してください\"],\"7PzzBU\":[\"ユーザー\"],\"IjyOjp\":[\"ユーザーがログインしていません\"],\"fXVIZq\":[\"値\"],\"KANz0G\":[\"請求の詳細を表示\"],\"6n7jtr\":[\"可視化\"],\"id6ein\":[\"10MB以下の正方形のPNG、JPEG、GIFに対応しています\"],\"ZS7vYp\":[\"新しいイベントごとに、このエンドポイントにPOSTリクエストを送信します\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[[\"workspaceName\"],\"へようこそ\"],\"C51ilI\":[\"APIキーの有効期限\"],\"leUubq\":[\"キーが無効になる時期\"],\"wvyffT\":[\"ワークフローをテストできません\"],\"pmUArF\":[\"ワークスペース\"],\"VicISP\":[\"ワークスペース削除\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"説明を記入\"],\"3d1wCB\":[\"はい\"],\"zSkMV0\":[\"1年分の料金が即時請求されます。\"],\"XVnj6K\":[\"クレジット残高は月々の請求に使用されます。\"],\"9ivpwk\":[\"表示名\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"ワークスペースが無効になります\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/ja.ts b/packages/twenty-front/src/locales/generated/ja.ts deleted file mode 100644 index e51aad622..000000000 --- a/packages/twenty-front/src/locales/generated/ja.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"fieldLabel\"],\"の\",[\"aggregateLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" APIキー\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1,000 ワークフローノード実行\"],\"4EdXYs\":[\"12時間 (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. フィールドの設定\"],\"QsMprd\":[\"24時間 (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"中止\"],\"uyJsf6\":[\"概要\"],\"AeXO77\":[\"アカウント\"],\"nD0Y+a\":[\"アカウント削除\"],\"bPwFdf\":[\"アカウント\"],\"FQBaXG\":[\"有効化\"],\"tu8A/k\":[\"ワークフローを有効化\"],\"F6pfE9\":[\"アクティブ\"],\"Mue4oc\":[\"あなたまたはチームが作成したアクティブなAPIキー。\"],\"m16xKo\":[\"追加\"],\"DpV70M\":[\"フィールドを追加\"],\"dEO3Zx\":[\"オブジェクトを追加\"],\"sgXUv+\":[\"SSOアイデンティティプロバイダーを追加\"],\"5+ttxv\":[\"ブロックリストに追加\"],\"pBsoKL\":[\"お気に入りに追加\"],\"m2qDV8\":[\"最初の\",[\"objectLabel\"],\"を追加\"],\"vLO+NG\":[[\"beautifiedCreatedAt\"],\"に追加\"],\"N40H+G\":[\"すべて\"],\"3saA7W\":[\"すべて (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"すべてのロール\"],\"GMx1K0\":[\"Googleのシングルサインオン機能でログインを許可する。\"],\"dea+zy\":[\"Microsoftのシングルサインオン機能でログインを許可する。\"],\"wMg43c\":[\"招待リンクを共有して新規ユーザーを招待する。\"],\"vHeVg5\":[\"ユーザーがメールとパスワードでサインインできるようにする。\"],\"LG4K0m\":[\"パスワードの更新中にエラーが発生しました\"],\"mJ6m4C\":[\"任意の説明\"],\"HZFm5R\":[\"および\"],\"0RqpZr\":[\"API & Webhooks\"],\"yRnk5W\":[\"APIキー\"],\"5h8ooz\":[\"APIキー\"],\"kAtj+q\":[\"API名\"],\"aAIQg2\":[\"外観\"],\"3iX0kh\":[\"請求間隔を変更してもよろしいですか?\"],\"nYD/Cq\":[\"昇順\"],\"rfYmIr\":[\"各メンバーのアクセス権限を指定するロールを割り当てる\"],\"lxQ+5m\":[\"担当\"],\"H8QGSx\":[\"8文字以上。\"],\"Y7Dx6e\":[\"少なくとも1つの認証方法を有効にする必要があります\"],\"P8fBlG\":[\"認証\"],\"yIVrHZ\":[\"認可する\"],\"3uQmjD\":[\"平均\"],\"Dht9W3\":[\"コンテンツに戻る\"],\"R+w/Va\":[\"請求\"],\"K1172m\":[\"ブロックリスト\"],\"2yl5lQ\":[\"電話予約\"],\"8Pfllj\":[\"Twentyを利用することにより、以下の事項に同意したものとみなされます。\"],\"PmmvzS\":[\"計算\"],\"AjVXBS\":[\"カレンダー\"],\"EUpfsd\":[\"カレンダー\"],\"dEgA5A\":[\"キャンセル\"],\"0TllC8\":[\"いつでもキャンセル可能\"],\"rRK/Lf\":[\"プランをキャンセル\"],\"N6gPiD\":[\"サブスクリプションをキャンセル\"],\"OfzMnb\":[[\"to\"],\"に変更\"],\"VhMDMg\":[\"パスワードを変更\"],\"SviKkE\":[\"中国語(簡体字)\"],\"dzb4Ep\":[\"中国語(繁体字)\"],\"JEFFOR\":[\"オブジェクトを選択\"],\"KT6rEB\":[\"プロバイダーを選択\"],\"9qP96p\":[\"トライアルを選択\"],\"yz7wBu\":[\"閉じる\"],\"+zUMwJ\":[\"SSO接続を設定\"],\"QTNsSm\":[\"カレンダーの設定を行い、カスタマイズする。\"],\"aGwm+D\":[\"アプリ全体の日付の表示方法を設定\"],\"Bh4GBD\":[\"メールとカレンダーの設定を行う。\"],\"D8ATlr\":[\"新しいアカウントをワークスペースに接続\"],\"Zgi9Fd\":[\"Googleと接続\"],\"IOfqM8\":[\"Microsoftと接続\"],\"9TzudL\":[\"接続されたアカウント\"],\"M73whl\":[\"コンテキスト\"],\"xGVfLh\":[\"続行\"],\"RvVi9c\":[\"メールで続行\"],\"oZyG4C\":[\"Googleで続行\"],\"ztoybH\":[\"Microsoftで続行\"],\"CcGOj+\":[\"コパイロット\"],\"7eVkEH\":[\"招待リンクをコピー\"],\"Ej5euX\":[\"このキーは再表示されないため、コピーしてください\"],\"wBMjJ2\":[\"カウント\"],\"EkZfen\":[\"すべてをカウント\"],\"vQJINq\":[\"空をカウント\"],\"DzRsDJ\":[\"空でないものをカウント\"],\"9FZBbf\":[\"一意の値をカウント\"],\"zNoOC2\":[\"ワークフローを作成し、ここに戻ってそのバージョンを表示\"],\"uXGLuq\":[\"APIキーを作成\"],\"d0DCww\":[\"新しいレコードを作成\"],\"dkAPxi\":[\"Webhookを作成\"],\"8skTDV\":[\"カスタムオブジェクト\"],\"qt+EaC\":[[\"objectLabelSingular\"],\"ビューで利用可能なフィールドをカスタマイズ\"],\"CMhr4u\":[\"ドメインをカスタマイズ\"],\"bCJa9l\":[\"ワークスペースのセキュリティをカスタマイズ\"],\"Zz6Cxn\":[\"危険ゾーン\"],\"5cNMFz\":[\"データモデル\"],\"r+cVRP\":[\"データ型\"],\"mYGY3B\":[\"日付\"],\"Ud9zHv\":[\"日付と時間\"],\"5y3O+A\":[\"無効化\"],\"qk4i22\":[\"カスタムAPI名を設定するには、「オブジェクトラベルとAPI名の同期」を無効にする\"],\"gexAq8\":[\"このフィールドを無効化\"],\"4tpC8V\":[\"ワークフローを無効化\"],\"Y2ImVJ\":[\"オブジェクトの名前と説明を定義\"],\"cnGeoo\":[\"削除\"],\"ZDGm40\":[\"アカウントを削除\"],\"gAz0S5\":[\"アカウントと関連データをすべて削除\"],\"hGfWDm\":[\"APIキーを削除\"],\"4dpwsE\":[\"レコードを削除\"],\"kf0A63\":[\"レコードを削除\"],\"T6S2Ns\":[\"この統合を削除\"],\"snMaH4\":[\"Webhookを削除\"],\"kYu0eF\":[\"ワークスペースを削除\"],\"mk2Ygs\":[\"ワークスペース全体を削除\"],\"Cko536\":[\"降順\"],\"Nu4oKW\":[\"説明\"],\"2xxBws\":[\"破棄\"],\"n+SX4g\":[\"開発者\"],\"zAg2B9\":[\"下書きを破棄\"],\"i66xz9\":[\"相対日付で表示\"],\"EoKe5U\":[\"ドメイン\"],\"QVVmxi\":[\"例:バックオフィス統合\"],\"tOkc8o\":[\"最も早い\"],\"JTbQuO\":[\"最も早い日付\"],\"v+uKyy\":[\"請求間隔を編集\"],\"h2KoTu\":[\"支払い方法の編集、請求書の確認など\"],\"6o1M/Q\":[\"サブドメイン名を編集するか、カスタムドメインを設定する。\"],\"O3oNi5\":[\"メール\"],\"lfQsvW\":[\"メール統合\"],\"QT/Wo7\":[\"メールまたはドメインはすでにブロックリストに登録されています\"],\"BXEcos\":[\"メール\"],\"eXoH4Q\":[\"社員\"],\"gqv5ZL\":[\"従業員\"],\"N2S1rs\":[\"空\"],\"T3juzf\":[\"エンドポイントURL\"],\"lYGfRP\":[\"英語\"],\"/bfFKe\":[[\"withCreditCardTrialPeriodDuration\"],\"日間の無料トライアルをお楽しみください。\"],\"GpB8YV\":[\"エンタープライズ\"],\"c3qGJX\":[\"APIキーの削除エラー:\",[\"err\"]],\"bj7nh3\":[\"APIキーの再生成エラー:\",[\"err\"]],\"VSQxWH\":[\"サブスクリプション\",[\"to\"],\"の切り替え中にエラーが発生しました。\"],\"JLxMta\":[\"非同期イベントの通知用にWebhookエンドポイントを設定する。\"],\"cIgBjB\":[\"以下の人とドメインをメール同期から除外する\"],\"fV7V51\":[\"既存のオブジェクト\"],\"IZ4o2e\":[\"設定を終了\"],\"tXGQvS\":[\"選択されたノードはステップ作成ノードである必要があります。\"],\"bKBhgb\":[\"経験\"],\"LxRNPw\":[\"有効期限\"],\"SkXfL0\":[\"有効期限\"],\"i9qiyR\":[\"有効期限\"],\"GS+Mus\":[\"エクスポート\"],\"ep2rbf\":[\"レコードをエクスポート\"],\"q46CjD\":[\"PDFにエクスポート\"],\"DaGxE0\":[\"ビューをエクスポート\"],\"X9kySA\":[\"お気に入り\"],\"zXgopL\":[\"フィールドタイプ\"],\"vF68cg\":[\"フィールド\"],\"3w/aqw\":[\"フィールド数\"],\"o7J4JM\":[\"フィルター\"],\"cSev+j\":[\"フィルター\"],\"glx6on\":[\"パスワードを忘れましたか?\"],\"nLC6tu\":[\"フランス語\"],\"aTieE0\":[\"月払いから年払いへ\"],\"K04lE5\":[\"年払いから月払いへ\"],\"scmRyR\":[\"フルアクセス\"],\"xANKBj\":[\"機能\"],\"Weq9zb\":[\"一般\"],\"DDcvSo\":[\"ドイツ語\"],\"NXEW3h\":[\"チームを招待して、ワークスペースを最大限に活用しましょう。\"],\"zSGbaR\":[\"サブスクリプションを取得\"],\"2GT3Hf\":[\"グローバル\"],\"hWp1MY\":[\"Twentyサポートに一時的なアクセスを許可して、問題のトラブルシューティングやコンテンツの復旧を行います。アクセスはいつでも取り消せます。\"],\"vLyv1R\":[\"非表示\"],\"XTWO+W\":[\"アイコンと名前\"],\"sJGljQ\":[\"識別子\"],\"j843N3\":[\"このキーを紛失した場合は再生成できますが、このキーを使用しているスクリプトは更新が必要です。確認のために\\\"\",[\"confirmationValue\"],\"\\\"と入力してください。\"],\"NoNwIX\":[\"非アクティブ\"],\"pZ/USH\":[\"インデックス\"],\"JE2tjr\":[\"入力はキャメルケースで、数字で始めることはできません。\"],\"AwUsnG\":[\"インスタンス\"],\"nbfdhU\":[\"統合\"],\"NtFk/Z\":[\"無効な認証プロバイダー\"],\"B2Tpo0\":[\"無効なメールアドレス\"],\"/m52AE\":[\"無効なメールアドレスまたはドメイン\"],\"QdoUFL\":[\"無効なフォーム値\"],\"0M8+El\":[\"メールで招待\"],\"PWIq/W\":[\"リンクで招待\"],\"3athPG\":[\"リンクで招待\"],\"5IfmKA\":[\"招待リンクがメールアドレスに送信されました\"],\"d+Y+rP\":[\"チームを招待\"],\"Lj7sBL\":[\"イタリア語\"],\"dFtidv\":[\"日本語\"],\"h6S9Yz\":[\"韓国語\"],\"zrpwCd\":[\"ラボ\"],\"vXIe7J\":[\"言語\"],\"wL3cK8\":[\"最新\"],\"Kcjbmz\":[\"最新の日付\"],\"pQjjYo\":[\"リンクがクリップボードにコピーされました\"],\"FgAxTj\":[\"ログアウト\"],\"nOhz3x\":[\"ログアウト\"],\"T6YjCk\":[\"メンバー管理\"],\"4cjU2u\":[\"ここでスペースのメンバーを管理\"],\"FyFNsd\":[\"インターネットアカウントを管理\"],\"36kYu0\":[\"サブスクリプションを管理\"],\"3Sdni6\":[\"完了としてマーク\"],\"CK1KXz\":[\"最大\"],\"wlQNTg\":[\"メンバー\"],\"eTUF28\":[\"最小\"],\"3Siwmw\":[\"その他のオプション\"],\"iSLA/r\":[\"左に移動\"],\"Ubl2by\":[\"右に移動\"],\"6YtxFj\":[\"名前\"],\"z+6jaZ\":[\"APIキーの名前\"],\"J7w8lI\":[\"ワークスペースの名前\"],\"2T8KCk\":[\"次のレコードに移動\"],\"veSA19\":[\"次のバージョンに移動\"],\"ZTEho+\":[\"次のワークフローに移動\"],\"2tw9bo\":[\"前のレコードに移動\"],\"I+Pm5V\":[\"前のバージョンに移動\"],\"QVUN3K\":[\"前のワークフローに移動\"],\"isRobC\":[\"新規\"],\"Kcr9Fr\":[\"新しいアカウント\"],\"o8MyXb\":[\"新しいキー\"],\"j313SZ\":[\"新しいキー\"],\"hFxdey\":[\"新しいオブジェクト\"],\"7vhWI8\":[\"新しいパスワード\"],\"BcCzLv\":[\"新しいレコード\"],\"2lmOC5\":[\"新しい役割\"],\"U1DAok\":[\"新しいWebhook\"],\"pwenQu\":[\"接続されたアカウントがありません\"],\"0uWxPM\":[\"ワークフローはまだ実行されていません\"],\"AQCvCC\":[\"ワークフローのバージョンはまだありません\"],\"4wUkDk\":[\"空ではない\"],\"W0i24j\":[\"オブジェクト\"],\"B3toQF\":[\"オブジェクト\"],\"KNz3EF\":[\"道を外れた\"],\"OV5wZZ\":[\"開いた\"],\"0zpgxV\":[\"オプション\"],\"BzEFor\":[\"または\"],\"/IX/7x\":[\"その他\"],\"boJlGf\":[\"ページが見つかりません\"],\"8ZsakT\":[\"パスワード\"],\"BxQ79w\":[\"パスワードが更新されました\"],\"mi6Rel\":[\"パスワードリセットリンクがメールに送信されました\"],\"SrVzRe\":[\"パーセント\"],\"yIK1GU\":[\"空の割合\"],\"PWLd4c\":[\"空でない割合\"],\"Bv3y5w\":[\"レコードを永久に削除\"],\"N0+GsR\":[\"写真\"],\"jEw0Mr\":[\"有効なURLを入力してください\"],\"6nsIo3\":[\"\\\"\",[\"confirmationValue\"],\"\\\"と入力して、このAPIキーを削除することを確認してください。このキーを使用しているスクリプトは動作しなくなりますのでご注意ください。\"],\"mFZTXr\":[[\"confirmationText\"],\"と入力して、このWebhookを削除することを確認してください。\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"ポルトガル語 - ブラジル\"],\"xtXHeo\":[\"ポルトガル語 - ポルトガル\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"プレビュー\"],\"LcET2C\":[\"プライバシーポリシー\"],\"vERlcd\":[\"プロフィール\"],\"YJgRqq\":[\"擬似英語\"],\"ibPuCP\":[\"ドキュメントを読む\"],\"v3xM25\":[\"パスワード更新リンクを含むメールを受け取る\"],\"dSCufP\":[\"レコード選択\"],\"vpZcGd\":[\"APIキーを再生成\"],\"Mwqo5m\":[\"キーを再生成\"],\"D+Mv78\":[\"キーを再生成\"],\"5icoS1\":[\"リリース\"],\"t/YqKh\":[\"削除\"],\"T/pF0Z\":[\"お気に入りから削除\"],\"KbS2K9\":[\"パスワードをリセット\"],\"1IWc1n\":[\"リセット\"],\"kx0s+n\":[\"結果\"],\"5dJK4M\":[\"役割\"],\"UX0N2y\":[\"ワークフローを実行し、その実行内容を見るためにここに戻る\"],\"A1taO8\":[\"検索\"],\"8NBMeZ\":[\"'\",[\"commandMenuSearch\"],\"'で検索...\"],\"l1/uy2\":[\"フィールドを検索...\"],\"k7kp5/\":[\"インデックスを検索...\"],\"7taA9j\":[\"フィールドを検索\"],\"ofuw3g\":[\"オブジェクトを検索...\"],\"IMeaSJ\":[\"レコードを検索\"],\"a3LDKx\":[\"セキュリティ\"],\"QREcJS\":[\"アクティブバージョンを見る\"],\"OpPn5Z\":[\"実行を見る\"],\"EtyY4+\":[\"バージョンを見る\"],\"lYhPN0\":[\"バージョン履歴を見る\"],\"xraglu\":[\"このエンドポイントに送信したいイベントを選択してください\"],\"AXTJAW\":[\"希望の言語を選択してください\"],\"mjK8F3\":[\"チームに招待メールを送信\"],\"yy5k7a\":[\"サーバー管理パネル\"],\"V7fgiB\":[\"メールの可視性を設定し、ブロックリストを管理するなど。\"],\"cx14rp\":[\"ドメイン名を設定\"],\"tn41zE\":[\"サブドメイン名を設定\"],\"Tz0i8g\":[\"設定\"],\"Vy9kmk\":[\"このリンクを共有して、ユーザーをワークスペースに招待\"],\"gWk8gY\":[\"フィールドのラベルを変更すると、API名も変更されますか?\"],\"5lWFkC\":[\"サインイン\"],\"e+RpCP\":[\"サインアップ\"],\"5v3IHX\":[\"シングルサインオン (SSO)\"],\"6Uau97\":[\"スキップ\"],\"f6Hub0\":[\"ソート\"],\"65A04M\":[\"スペイン語\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"サブドメイン\"],\"omhc+7\":[\"サブドメインは既に使用されています\"],\"OlC/tU\":[\"サブドメインは30文字以内にしてください\"],\"ZETwlU\":[\"サブドメインは3文字以上にしてください\"],\"B5jRKH\":[\"サブスクリプションが\",[\"to\"],\"に切り替わりました\"],\"AxQiPW\":[\"合計\"],\"XYLcNv\":[\"サポート\"],\"9yk9d1\":[[\"from\"],\"から切り替える\"],\"qi74XZ\":[[\"to\"],\"に切り替える\"],\"L6Fg36\":[\"請求を\",[\"to\"],\"に切り替える\"],\"AtzMpB\":[\"フィールドラベルとAPI名を同期する\"],\"E3AMmw\":[\"システム設定 - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"システム設定 - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"利用規約\"],\"NnH3pK\":[\"テスト\"],\"bU9B27\":[\"テストワークフロー\"],\"2OUtmv\":[\"このフィールドの説明\"],\"VGZYbZ\":[\"アカウントに関連付けられたメール\"],\"h8mvCd\":[\"このフィールドの名前とアイコン\"],\"L97sPr\":[\"お探しのページは存在しないか、削除されました。元のページに戻りましょう\"],\"uWikAA\":[\"このフィールドの値\"],\"+69KDk\":[\"このフィールドの値は一意でなければなりません\"],\"ynfkhb\":[\"パスワードの更新中にエラーが発生しました\"],\"PmtLRf\":[\"問題が発生しました\"],\"hqCwGc\":[\"この操作は取り消せません。このユーザーは永久に削除され、すべての割り当てから削除されます\"],\"gWGuHC\":[\"この操作は取り消せません。ワークスペース全体が永久に削除されます。<0/> 確認のため、メールアドレスを入力してください\"],\"n9nSNJ\":[\"時間形式\"],\"aqMzDX\":[\"月払いへ\"],\"WXXiXO\":[\"年払いへ\"],\"PiUt3N\":[\"トリガータイプ\"],\"IQ5pAL\":[\"トリガータイプは、レコードが選択されていない場合は「手動」にする必要があります\"],\"+zy2Nq\":[\"タイプ\"],\"U83IeL\":[\"何でも入力\"],\"wSXm5S\":[\"一意\"],\"GQCXQS\":[\"連絡先無制限\"],\"ONWvwQ\":[\"アップロード\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"ドラフトとして使用\"],\"oTTQsc\":[\"文字、数字、ダッシュのみ使用可能。文字または数字で始め、文字または数字で終わる\"],\"c6uZUV\":[\"APIを使用するか、最初の\",[\"objectLabel\"],\"を手動で追加してください\"],\"7PzzBU\":[\"ユーザー\"],\"IjyOjp\":[\"ユーザーがログインしていません\"],\"fXVIZq\":[\"値\"],\"KANz0G\":[\"請求の詳細を表示\"],\"6n7jtr\":[\"可視化\"],\"id6ein\":[\"10MB以下の正方形のPNG、JPEG、GIFに対応しています\"],\"ZS7vYp\":[\"新しいイベントごとに、このエンドポイントにPOSTリクエストを送信します\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[[\"workspaceName\"],\"へようこそ\"],\"C51ilI\":[\"APIキーの有効期限\"],\"leUubq\":[\"キーが無効になる時期\"],\"wvyffT\":[\"ワークフローをテストできません\"],\"pmUArF\":[\"ワークスペース\"],\"VicISP\":[\"ワークスペース削除\"],\"Q9pNST\":[\"説明を記入\"],\"3d1wCB\":[\"はい\"],\"zSkMV0\":[\"1年分の料金が即時請求されます。\"],\"XVnj6K\":[\"クレジット残高は月々の請求に使用されます。\"],\"9ivpwk\":[\"表示名\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"ワークスペースが無効になります\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/ko-KR.ts b/packages/twenty-front/src/locales/generated/ko-KR.ts new file mode 100644 index 000000000..f192dcde0 --- /dev/null +++ b/packages/twenty-front/src/locales/generated/ko-KR.ts @@ -0,0 +1 @@ +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"fieldLabel\"],\"의 \",[\"aggregateLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API 키\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"워크플로 노드 실행 1,000회\"],\"4EdXYs\":[\"12시간 (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. 필드 구성\"],\"QsMprd\":[\"24시간 (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"중단\"],\"uyJsf6\":[\"정보\"],\"AeXO77\":[\"계정\"],\"nD0Y+a\":[\"계정 삭제\"],\"bPwFdf\":[\"계정\"],\"FQBaXG\":[\"활성화\"],\"tu8A/k\":[\"워크플로 활성화\"],\"F6pfE9\":[\"활성\"],\"Mue4oc\":[\"본인 또는 팀이 생성한 활성 API 키입니다.\"],\"m16xKo\":[\"추가\"],\"DpV70M\":[\"필드 추가\"],\"dEO3Zx\":[\"개체 추가\"],\"sgXUv+\":[\"SSO ID 공급자 추가\"],\"5+ttxv\":[\"차단 목록에 추가\"],\"pBsoKL\":[\"즐겨찾기에 추가\"],\"m2qDV8\":[\"첫 번째 \",[\"objectLabel\"],\" 추가\"],\"vLO+NG\":[[\"beautifiedCreatedAt\"],\" 추가\"],\"N40H+G\":[\"전체\"],\"3saA7W\":[\"전체 (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"모든 역할\"],\"GMx1K0\":[\"Google의 SSO 기능을 통한 로그인 허용.\"],\"dea+zy\":[\"Microsoft의 SSO 기능을 통한 로그인 허용.\"],\"wMg43c\":[\"초대 링크 공유를 통한 새 사용자 초대 허용.\"],\"vHeVg5\":[\"이메일과 비밀번호로 로그인 허용.\"],\"LG4K0m\":[\"비밀번호 업데이트 중 오류가 발생했습니다\"],\"mJ6m4C\":[\"선택적 설명\"],\"HZFm5R\":[\"및\"],\"0RqpZr\":[\"API 및 웹훅\"],\"yRnk5W\":[\"API 키\"],\"5h8ooz\":[\"API 키\"],\"kAtj+q\":[\"API 이름\"],\"aAIQg2\":[\"외관\"],\"3iX0kh\":[\"청구 주기를 변경하시겠습니까?\"],\"nYD/Cq\":[\"오름차순\"],\"rfYmIr\":[\"각 구성원의 접근 권한을 지정하려면 역할을 할당하세요\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"할당됨\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"최소 8자 이상.\"],\"Y7Dx6e\":[\"하나 이상의 인증 방법이 활성화되어야 합니다\"],\"P8fBlG\":[\"인증\"],\"yIVrHZ\":[\"승인\"],\"3uQmjD\":[\"평균\"],\"Dht9W3\":[\"콘텐츠로 돌아가기\"],\"R+w/Va\":[\"청구\"],\"K1172m\":[\"차단 목록\"],\"2yl5lQ\":[\"통화 예약\"],\"8Pfllj\":[\"Twenty를 사용함으로써 귀하는 다음에 동의합니다\"],\"PmmvzS\":[\"계산\"],\"AjVXBS\":[\"캘린더\"],\"EUpfsd\":[\"캘린더\"],\"dEgA5A\":[\"취소\"],\"0TllC8\":[\"언제든지 취소 가능\"],\"rRK/Lf\":[\"요금제 취소\"],\"N6gPiD\":[\"구독 취소\"],\"OfzMnb\":[[\"to\"],\"로 변경\"],\"VhMDMg\":[\"비밀번호 변경\"],\"SviKkE\":[\"중국어 - 간체\"],\"dzb4Ep\":[\"중국어 - 번체\"],\"JEFFOR\":[\"개체 선택\"],\"KT6rEB\":[\"제공업체 선택\"],\"9qP96p\":[\"평가판 선택\"],\"yz7wBu\":[\"닫기\"],\"+zUMwJ\":[\"SSO 연결 구성\"],\"QTNsSm\":[\"캘린더 환경설정을 구성하고 사용자 지정하세요.\"],\"aGwm+D\":[\"앱 전체에 날짜가 표시되는 방식 구성\"],\"Bh4GBD\":[\"이메일 및 캘린더 설정 구성.\"],\"D8ATlr\":[\"새 계정을 워크스페이스에 연결\"],\"Zgi9Fd\":[\"Google과 연결\"],\"IOfqM8\":[\"Microsoft와 연결\"],\"9TzudL\":[\"연결된 계정\"],\"M73whl\":[\"컨텍스트\"],\"xGVfLh\":[\"계속\"],\"RvVi9c\":[\"이메일로 계속\"],\"oZyG4C\":[\"Google로 계속\"],\"ztoybH\":[\"Microsoft로 계속\"],\"CcGOj+\":[\"부조종사\"],\"7eVkEH\":[\"초대 링크 복사\"],\"Ej5euX\":[\"이 키는 다시 표시되지 않으므로 복사하세요\"],\"wBMjJ2\":[\"개수\"],\"EkZfen\":[\"전체 개수\"],\"vQJINq\":[\"비어 있는 개수\"],\"DzRsDJ\":[\"비어 있지 않은 개수\"],\"9FZBbf\":[\"고유 값 개수\"],\"zNoOC2\":[\"워크플로를 생성하고 여기로 돌아와 버전을 확인하세요\"],\"uXGLuq\":[\"API 키 생성\"],\"d0DCww\":[\"새 레코드 생성\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"Webhook 생성\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"사용자 지정 개체\"],\"qt+EaC\":[[\"objectLabelSingular\"],\" 보기에서 사용 가능한 필드를 사용자 지정하세요.\"],\"CMhr4u\":[\"도메인 사용자 지정\"],\"bCJa9l\":[\"워크스페이스 보안 사용자 지정\"],\"Zz6Cxn\":[\"위험 구역\"],\"5cNMFz\":[\"데이터 모델\"],\"r+cVRP\":[\"데이터 유형\"],\"mYGY3B\":[\"날짜\"],\"Ud9zHv\":[\"날짜 및 시간\"],\"5y3O+A\":[\"비활성화\"],\"qk4i22\":[\"\\\"개체 레이블 및 API 이름 동기화\\\"를 비활성화하여 사용자 지정 API 이름을 설정하세요\"],\"gexAq8\":[\"이 필드 비활성화\"],\"4tpC8V\":[\"워크플로 비활성화\"],\"Y2ImVJ\":[\"개체의 이름과 설명을 정의하세요\"],\"cnGeoo\":[\"삭제\"],\"ZDGm40\":[\"계정 삭제\"],\"gAz0S5\":[\"계정 및 모든 관련 데이터 삭제\"],\"hGfWDm\":[\"API 키 삭제\"],\"4dpwsE\":[\"레코드 삭제\"],\"kf0A63\":[\"레코드 삭제\"],\"T6S2Ns\":[\"이 통합 삭제\"],\"snMaH4\":[\"Webhook 삭제\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"워크스페이스 삭제\"],\"mk2Ygs\":[\"전체 워크스페이스 삭제\"],\"Cko536\":[\"내림차순\"],\"Nu4oKW\":[\"설명\"],\"2xxBws\":[\"파기\"],\"n+SX4g\":[\"개발자\"],\"zAg2B9\":[\"초안 삭제\"],\"i66xz9\":[\"상대 날짜로 표시\"],\"EoKe5U\":[\"도메인\"],\"QVVmxi\":[\"예: 백오피스 통합\"],\"tOkc8o\":[\"가장 빠름\"],\"JTbQuO\":[\"가장 빠른 날짜\"],\"v+uKyy\":[\"청구 주기 편집\"],\"h2KoTu\":[\"결제 방법 편집, 송장 확인 등\"],\"6o1M/Q\":[\"하위 도메인 이름을 편집하거나 사용자 지정 도메인을 설정하세요.\"],\"O3oNi5\":[\"이메일\"],\"lfQsvW\":[\"이메일 통합\"],\"QT/Wo7\":[\"이메일 또는 도메인이 이미 차단 목록에 있습니다\"],\"BXEcos\":[\"이메일\"],\"eXoH4Q\":[\"직원\"],\"gqv5ZL\":[\"직원\"],\"N2S1rs\":[\"비어 있음\"],\"T3juzf\":[\"엔드포인트 URL\"],\"lYGfRP\":[\"영어\"],\"/bfFKe\":[[\"withCreditCardTrialPeriodDuration\"],\"일 무료 체험을 즐기세요\"],\"GpB8YV\":[\"엔터프라이즈\"],\"c3qGJX\":[\"API 키 삭제 오류: \",[\"err\"]],\"bj7nh3\":[\"API 키 재생성 오류: \",[\"err\"]],\"VSQxWH\":[\"구독 전환 중 오류 발생: \",[\"to\"],\".\"],\"JLxMta\":[\"비동기 이벤트 알림을 위한 Webhook 엔드포인트 설정.\"],\"cIgBjB\":[\"다음 사람 및 도메인을 이메일 동기화에서 제외\"],\"fV7V51\":[\"기존 개체\"],\"IZ4o2e\":[\"설정 종료\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"경험\"],\"LxRNPw\":[\"만료\"],\"SkXfL0\":[\"만료일\"],\"i9qiyR\":[\"만료까지 남은 시간\"],\"GS+Mus\":[\"내보내기\"],\"ep2rbf\":[\"레코드 내보내기\"],\"q46CjD\":[\"PDF로 내보내기\"],\"DaGxE0\":[\"보기 내보내기\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"즐겨찾기\"],\"zXgopL\":[\"필드 유형\"],\"vF68cg\":[\"필드\"],\"3w/aqw\":[\"필드 수\"],\"o7J4JM\":[\"필터\"],\"cSev+j\":[\"필터\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"비밀번호를 잊으셨나요?\"],\"nLC6tu\":[\"프랑스어\"],\"aTieE0\":[\"월간에서 연간으로\"],\"K04lE5\":[\"연간에서 월간으로\"],\"scmRyR\":[\"전체 접근\"],\"xANKBj\":[\"기능\"],\"Weq9zb\":[\"일반\"],\"DDcvSo\":[\"독일어\"],\"NXEW3h\":[\"팀을 초대하여 워크스페이스를 최대한 활용하세요.\"],\"zSGbaR\":[\"구독 신청\"],\"2GT3Hf\":[\"글로벌\"],\"hWp1MY\":[\"Twenty 지원팀에 임시 접근 권한을 부여하여 문제를 해결하거나 콘텐츠를 복구할 수 있도록 하세요. 언제든지 접근 권한을 취소할 수 있습니다.\"],\"vLyv1R\":[\"숨기기\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"아이콘 및 이름\"],\"sJGljQ\":[\"식별자\"],\"j843N3\":[\"이 키를 분실한 경우 다시 생성할 수 있지만, 이 키를 사용하는 모든 스크립트를 업데이트해야 합니다. 확인하려면 \\\"\",[\"confirmationValue\"],\"\\\"을 입력하세요.\"],\"NoNwIX\":[\"비활성\"],\"pZ/USH\":[\"색인\"],\"JE2tjr\":[\"입력은 카멜 케이스여야 하며 숫자로 시작할 수 없습니다\"],\"AwUsnG\":[\"인스턴스\"],\"nbfdhU\":[\"통합\"],\"NtFk/Z\":[\"잘못된 인증 제공자\"],\"B2Tpo0\":[\"잘못된 이메일\"],\"/m52AE\":[\"잘못된 이메일 또는 도메인\"],\"QdoUFL\":[\"잘못된 양식 값\"],\"0M8+El\":[\"이메일로 초대\"],\"PWIq/W\":[\"링크로 초대\"],\"3athPG\":[\"링크로 초대\"],\"5IfmKA\":[\"이메일 주소로 전송된 초대 링크\"],\"d+Y+rP\":[\"팀 초대\"],\"Lj7sBL\":[\"이탈리아어\"],\"dFtidv\":[\"일본어\"],\"h6S9Yz\":[\"한국어\"],\"zrpwCd\":[\"실험실\"],\"vXIe7J\":[\"언어\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"최신\"],\"Kcjbmz\":[\"최신 날짜\"],\"pQjjYo\":[\"링크가 클립보드에 복사되었습니다\"],\"FgAxTj\":[\"로그아웃\"],\"nOhz3x\":[\"로그아웃\"],\"T6YjCk\":[\"회원 관리\"],\"4cjU2u\":[\"여기에서 워크스페이스의 회원을 관리하세요\"],\"FyFNsd\":[\"인터넷 계정을 관리하세요.\"],\"36kYu0\":[\"구독 관리\"],\"3Sdni6\":[\"완료로 표시\"],\"CK1KXz\":[\"최대\"],\"wlQNTg\":[\"회원\"],\"eTUF28\":[\"최소\"],\"3Siwmw\":[\"추가 옵션\"],\"iSLA/r\":[\"왼쪽으로 이동\"],\"Ubl2by\":[\"오른쪽으로 이동\"],\"6YtxFj\":[\"이름\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"API 키 이름\"],\"J7w8lI\":[\"워크스페이스 이름\"],\"2T8KCk\":[\"다음 레코드로 이동\"],\"veSA19\":[\"다음 버전으로 이동\"],\"ZTEho+\":[\"다음 워크플로로 이동\"],\"2tw9bo\":[\"이전 레코드로 이동\"],\"I+Pm5V\":[\"이전 버전으로 이동\"],\"QVUN3K\":[\"이전 워크플로로 이동\"],\"isRobC\":[\"새로운\"],\"Kcr9Fr\":[\"새 계정\"],\"o8MyXb\":[\"새 키\"],\"j313SZ\":[\"새 키\"],\"hFxdey\":[\"새 개체\"],\"7vhWI8\":[\"새 비밀번호\"],\"BcCzLv\":[\"새 레코드\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"새 Webhook\"],\"pwenQu\":[\"연결된 계정 없음\"],\"0uWxPM\":[\"아직 워크플로 실행 없음\"],\"AQCvCC\":[\"아직 워크플로 버전 없음\"],\"4wUkDk\":[\"비어 있지 않음\"],\"W0i24j\":[\"개체\"],\"B3toQF\":[\"개체\"],\"KNz3EF\":[\"잘 알려지지 않은 길\"],\"OV5wZZ\":[\"열림\"],\"0zpgxV\":[\"옵션\"],\"BzEFor\":[\"또는\"],\"/IX/7x\":[\"기타\"],\"boJlGf\":[\"페이지를 찾을 수 없음\"],\"8ZsakT\":[\"비밀번호\"],\"BxQ79w\":[\"비밀번호가 업데이트되었습니다\"],\"mi6Rel\":[\"비밀번호 재설정 링크가 이메일로 전송되었습니다\"],\"SrVzRe\":[\"퍼센트\"],\"yIK1GU\":[\"비어 있는 퍼센트\"],\"PWLd4c\":[\"비어 있지 않은 퍼센트\"],\"Bv3y5w\":[\"레코드 영구 삭제\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"사진\"],\"jEw0Mr\":[\"유효한 URL을 입력하세요\"],\"6nsIo3\":[\"\\\"\",[\"confirmationValue\"],\"\\\"을 입력하여 이 API 키를 삭제할 것인지 확인하세요. 이 키를 사용하는 모든 스크립트는 작동이 중지됩니다.\"],\"mFZTXr\":[[\"confirmationText\"],\"을 입력하여 이 Webhook을 삭제할 것인지 확인하세요.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"포르투갈어 - 브라질\"],\"xtXHeo\":[\"포르투갈어 - 포르투갈\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"미리보기\"],\"LcET2C\":[\"개인정보 보호정책\"],\"vERlcd\":[\"프로필\"],\"YJgRqq\":[\"의사 영어\"],\"ibPuCP\":[\"문서 읽기\"],\"v3xM25\":[\"비밀번호 업데이트 링크가 포함된 이메일 받기\"],\"dSCufP\":[\"레코드 선택\"],\"vpZcGd\":[\"API 키 재생성\"],\"Mwqo5m\":[\"키 재생성\"],\"D+Mv78\":[\"키 재생성\"],\"5icoS1\":[\"릴리스\"],\"t/YqKh\":[\"제거\"],\"T/pF0Z\":[\"즐겨찾기에서 제거\"],\"KbS2K9\":[\"비밀번호 재설정\"],\"1IWc1n\":[\"다음으로 재설정\"],\"kx0s+n\":[\"결과\"],\"5dJK4M\":[\"역할\"],\"UX0N2y\":[\"워크플로를 실행하고 여기로 돌아와 실행 결과를 확인하세요\"],\"A1taO8\":[\"검색\"],\"8NBMeZ\":[\"'\",[\"commandMenuSearch\"],\"'으로 검색...\"],\"l1/uy2\":[\"필드 검색...\"],\"k7kp5/\":[\"색인 검색...\"],\"7taA9j\":[\"필드 검색\"],\"ofuw3g\":[\"개체 검색...\"],\"IMeaSJ\":[\"레코드 검색\"],\"a3LDKx\":[\"보안\"],\"QREcJS\":[\"활성 버전 보기\"],\"OpPn5Z\":[\"실행 보기\"],\"EtyY4+\":[\"버전 보기\"],\"lYhPN0\":[\"버전 기록 보기\"],\"xraglu\":[\"이 엔드포인트로 보내려는 이벤트를 선택하세요\"],\"AXTJAW\":[\"선호하는 언어 선택\"],\"mjK8F3\":[\"팀에 초대 이메일 보내기\"],\"yy5k7a\":[\"서버 관리자 패널\"],\"V7fgiB\":[\"이메일 공개 여부 설정, 차단 목록 관리 등을 할 수 있습니다.\"],\"cx14rp\":[\"도메인 이름 설정\"],\"tn41zE\":[\"하위 도메인 이름 설정\"],\"Tz0i8g\":[\"설정\"],\"Vy9kmk\":[\"이 링크를 공유하여 사용자를 워크스페이스에 초대하세요\"],\"gWk8gY\":[\"필드의 레이블을 변경하면 API 이름도 변경되어야 하나요?\"],\"5lWFkC\":[\"로그인\"],\"e+RpCP\":[\"가입하기\"],\"5v3IHX\":[\"싱글 사인온(SSO)\"],\"6Uau97\":[\"건너뛰기\"],\"f6Hub0\":[\"정렬\"],\"65A04M\":[\"스페인어\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"하위 도메인\"],\"omhc+7\":[\"이미 사용 중인 하위 도메인\"],\"OlC/tU\":[\"하위 도메인은 30자를 초과할 수 없습니다\"],\"ZETwlU\":[\"하위 도메인은 3자보다 짧을 수 없습니다\"],\"B5jRKH\":[\"구독이 \",[\"to\"],\"로 전환되었습니다\"],\"AxQiPW\":[\"합계\"],\"XYLcNv\":[\"지원\"],\"9yk9d1\":[[\"from\"],\"에서 전환\"],\"qi74XZ\":[[\"to\"],\"로 전환\"],\"L6Fg36\":[\"청구 \",[\"to\"],\"로 전환\"],\"AtzMpB\":[\"필드 레이블과 API 이름 동기화\"],\"E3AMmw\":[\"시스템 설정 - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"시스템 설정 - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"서비스 약관\"],\"NnH3pK\":[\"테스트\"],\"bU9B27\":[\"테스트 워크플로\"],\"2OUtmv\":[\"이 필드의 설명\"],\"VGZYbZ\":[\"계정에 연결된 이메일\"],\"h8mvCd\":[\"이 필드의 이름과 아이콘\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"찾고 계신 페이지는 이미 사라졌거나 존재하지 않습니다. 다시 정상화해 드리겠습니다\"],\"uWikAA\":[\"이 필드의 값\"],\"+69KDk\":[\"이 필드의 값은 고유해야 합니다\"],\"ynfkhb\":[\"비밀번호 업데이트 중 오류가 발생했습니다.\"],\"PmtLRf\":[\"문제가 발생했습니다\"],\"hqCwGc\":[\"이 작업은 취소할 수 없습니다. 이렇게 하면 사용자가 영구적으로 삭제되고 모든 할당에서 제거됩니다.\"],\"gWGuHC\":[\"이 작업은 취소할 수 없습니다. 이렇게 하면 전체 워크스페이스가 영구적으로 삭제됩니다. <0/> 확인하려면 이메일을 입력하세요.\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"시간 형식\"],\"aqMzDX\":[\"월간으로\"],\"WXXiXO\":[\"연간으로\"],\"PiUt3N\":[\"트리거 유형\"],\"IQ5pAL\":[\"트리거 유형은 수동이어야 합니다 - 선택된 레코드가 없는 경우\"],\"+zy2Nq\":[\"유형\"],\"U83IeL\":[\"아무거나 입력하세요\"],\"wSXm5S\":[\"고유\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"무제한 연락처\"],\"ONWvwQ\":[\"업로드\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"초안으로 사용\"],\"oTTQsc\":[\"문자, 숫자, 대시만 사용하세요. 문자 또는 숫자로 시작하고 끝내세요\"],\"c6uZUV\":[\"API를 사용하거나 첫 번째 \",[\"objectLabel\"],\"을 수동으로 추가하세요\"],\"7PzzBU\":[\"사용자\"],\"IjyOjp\":[\"사용자가 로그인하지 않았습니다\"],\"fXVIZq\":[\"값\"],\"KANz0G\":[\"청구 세부 정보 보기\"],\"6n7jtr\":[\"시각화\"],\"id6ein\":[\"10MB 미만의 정사각형 PNG, JPEG 및 GIF를 지원합니다\"],\"ZS7vYp\":[\"모든 새로운 이벤트에 대해 이 엔드포인트로 POST 요청을 보냅니다\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[[\"workspaceName\"],\"에 오신 것을 환영합니다\"],\"C51ilI\":[\"API 키 만료일.\"],\"leUubq\":[\"키 비활성화 시기\"],\"wvyffT\":[\"워크플로를 테스트할 수 없음\"],\"pmUArF\":[\"워크스페이스\"],\"VicISP\":[\"워크스페이스 삭제\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"설명을 작성하세요\"],\"3d1wCB\":[\"예\"],\"zSkMV0\":[\"1년 요금이 즉시 청구됩니다.\"],\"XVnj6K\":[\"크레딧 잔액이 월 청구서 결제에 사용됩니다.\"],\"9ivpwk\":[\"표시될 이름\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"워크스페이스가 비활성화됩니다\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/ko.ts b/packages/twenty-front/src/locales/generated/ko.ts deleted file mode 100644 index 137c3036f..000000000 --- a/packages/twenty-front/src/locales/generated/ko.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"fieldLabel\"],\"의 \",[\"aggregateLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API 키\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"워크플로 노드 실행 1,000회\"],\"4EdXYs\":[\"12시간 (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. 필드 구성\"],\"QsMprd\":[\"24시간 (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"중단\"],\"uyJsf6\":[\"정보\"],\"AeXO77\":[\"계정\"],\"nD0Y+a\":[\"계정 삭제\"],\"bPwFdf\":[\"계정\"],\"FQBaXG\":[\"활성화\"],\"tu8A/k\":[\"워크플로 활성화\"],\"F6pfE9\":[\"활성\"],\"Mue4oc\":[\"본인 또는 팀이 생성한 활성 API 키입니다.\"],\"m16xKo\":[\"추가\"],\"DpV70M\":[\"필드 추가\"],\"dEO3Zx\":[\"개체 추가\"],\"sgXUv+\":[\"SSO ID 공급자 추가\"],\"5+ttxv\":[\"차단 목록에 추가\"],\"pBsoKL\":[\"즐겨찾기에 추가\"],\"m2qDV8\":[\"첫 번째 \",[\"objectLabel\"],\" 추가\"],\"vLO+NG\":[[\"beautifiedCreatedAt\"],\" 추가\"],\"N40H+G\":[\"전체\"],\"3saA7W\":[\"전체 (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"모든 역할\"],\"GMx1K0\":[\"Google의 SSO 기능을 통한 로그인 허용.\"],\"dea+zy\":[\"Microsoft의 SSO 기능을 통한 로그인 허용.\"],\"wMg43c\":[\"초대 링크 공유를 통한 새 사용자 초대 허용.\"],\"vHeVg5\":[\"이메일과 비밀번호로 로그인 허용.\"],\"LG4K0m\":[\"비밀번호 업데이트 중 오류가 발생했습니다\"],\"mJ6m4C\":[\"선택적 설명\"],\"HZFm5R\":[\"및\"],\"0RqpZr\":[\"API 및 웹훅\"],\"yRnk5W\":[\"API 키\"],\"5h8ooz\":[\"API 키\"],\"kAtj+q\":[\"API 이름\"],\"aAIQg2\":[\"외관\"],\"3iX0kh\":[\"청구 주기를 변경하시겠습니까?\"],\"nYD/Cq\":[\"오름차순\"],\"rfYmIr\":[\"각 구성원의 접근 권한을 지정하려면 역할을 할당하세요\"],\"lxQ+5m\":[\"할당됨\"],\"H8QGSx\":[\"최소 8자 이상.\"],\"Y7Dx6e\":[\"하나 이상의 인증 방법이 활성화되어야 합니다\"],\"P8fBlG\":[\"인증\"],\"yIVrHZ\":[\"승인\"],\"3uQmjD\":[\"평균\"],\"Dht9W3\":[\"콘텐츠로 돌아가기\"],\"R+w/Va\":[\"청구\"],\"K1172m\":[\"차단 목록\"],\"2yl5lQ\":[\"통화 예약\"],\"8Pfllj\":[\"Twenty를 사용함으로써 귀하는 다음에 동의합니다\"],\"PmmvzS\":[\"계산\"],\"AjVXBS\":[\"캘린더\"],\"EUpfsd\":[\"캘린더\"],\"dEgA5A\":[\"취소\"],\"0TllC8\":[\"언제든지 취소 가능\"],\"rRK/Lf\":[\"요금제 취소\"],\"N6gPiD\":[\"구독 취소\"],\"OfzMnb\":[[\"to\"],\"로 변경\"],\"VhMDMg\":[\"비밀번호 변경\"],\"SviKkE\":[\"중국어 - 간체\"],\"dzb4Ep\":[\"중국어 - 번체\"],\"JEFFOR\":[\"개체 선택\"],\"KT6rEB\":[\"제공업체 선택\"],\"9qP96p\":[\"평가판 선택\"],\"yz7wBu\":[\"닫기\"],\"+zUMwJ\":[\"SSO 연결 구성\"],\"QTNsSm\":[\"캘린더 환경설정을 구성하고 사용자 지정하세요.\"],\"aGwm+D\":[\"앱 전체에 날짜가 표시되는 방식 구성\"],\"Bh4GBD\":[\"이메일 및 캘린더 설정 구성.\"],\"D8ATlr\":[\"새 계정을 워크스페이스에 연결\"],\"Zgi9Fd\":[\"Google과 연결\"],\"IOfqM8\":[\"Microsoft와 연결\"],\"9TzudL\":[\"연결된 계정\"],\"M73whl\":[\"컨텍스트\"],\"xGVfLh\":[\"계속\"],\"RvVi9c\":[\"이메일로 계속\"],\"oZyG4C\":[\"Google로 계속\"],\"ztoybH\":[\"Microsoft로 계속\"],\"CcGOj+\":[\"부조종사\"],\"7eVkEH\":[\"초대 링크 복사\"],\"Ej5euX\":[\"이 키는 다시 표시되지 않으므로 복사하세요\"],\"wBMjJ2\":[\"개수\"],\"EkZfen\":[\"전체 개수\"],\"vQJINq\":[\"비어 있는 개수\"],\"DzRsDJ\":[\"비어 있지 않은 개수\"],\"9FZBbf\":[\"고유 값 개수\"],\"zNoOC2\":[\"워크플로를 생성하고 여기로 돌아와 버전을 확인하세요\"],\"uXGLuq\":[\"API 키 생성\"],\"d0DCww\":[\"새 레코드 생성\"],\"dkAPxi\":[\"Webhook 생성\"],\"8skTDV\":[\"사용자 지정 개체\"],\"qt+EaC\":[[\"objectLabelSingular\"],\" 보기에서 사용 가능한 필드를 사용자 지정하세요.\"],\"CMhr4u\":[\"도메인 사용자 지정\"],\"bCJa9l\":[\"워크스페이스 보안 사용자 지정\"],\"Zz6Cxn\":[\"위험 구역\"],\"5cNMFz\":[\"데이터 모델\"],\"r+cVRP\":[\"데이터 유형\"],\"mYGY3B\":[\"날짜\"],\"Ud9zHv\":[\"날짜 및 시간\"],\"5y3O+A\":[\"비활성화\"],\"qk4i22\":[\"\\\"개체 레이블 및 API 이름 동기화\\\"를 비활성화하여 사용자 지정 API 이름을 설정하세요\"],\"gexAq8\":[\"이 필드 비활성화\"],\"4tpC8V\":[\"워크플로 비활성화\"],\"Y2ImVJ\":[\"개체의 이름과 설명을 정의하세요\"],\"cnGeoo\":[\"삭제\"],\"ZDGm40\":[\"계정 삭제\"],\"gAz0S5\":[\"계정 및 모든 관련 데이터 삭제\"],\"hGfWDm\":[\"API 키 삭제\"],\"4dpwsE\":[\"레코드 삭제\"],\"kf0A63\":[\"레코드 삭제\"],\"T6S2Ns\":[\"이 통합 삭제\"],\"snMaH4\":[\"Webhook 삭제\"],\"kYu0eF\":[\"워크스페이스 삭제\"],\"mk2Ygs\":[\"전체 워크스페이스 삭제\"],\"Cko536\":[\"내림차순\"],\"Nu4oKW\":[\"설명\"],\"2xxBws\":[\"파기\"],\"n+SX4g\":[\"개발자\"],\"zAg2B9\":[\"초안 삭제\"],\"i66xz9\":[\"상대 날짜로 표시\"],\"EoKe5U\":[\"도메인\"],\"QVVmxi\":[\"예: 백오피스 통합\"],\"tOkc8o\":[\"가장 빠름\"],\"JTbQuO\":[\"가장 빠른 날짜\"],\"v+uKyy\":[\"청구 주기 편집\"],\"h2KoTu\":[\"결제 방법 편집, 송장 확인 등\"],\"6o1M/Q\":[\"하위 도메인 이름을 편집하거나 사용자 지정 도메인을 설정하세요.\"],\"O3oNi5\":[\"이메일\"],\"lfQsvW\":[\"이메일 통합\"],\"QT/Wo7\":[\"이메일 또는 도메인이 이미 차단 목록에 있습니다\"],\"BXEcos\":[\"이메일\"],\"eXoH4Q\":[\"직원\"],\"gqv5ZL\":[\"직원\"],\"N2S1rs\":[\"비어 있음\"],\"T3juzf\":[\"엔드포인트 URL\"],\"lYGfRP\":[\"영어\"],\"/bfFKe\":[[\"withCreditCardTrialPeriodDuration\"],\"일 무료 체험을 즐기세요\"],\"GpB8YV\":[\"엔터프라이즈\"],\"c3qGJX\":[\"API 키 삭제 오류: \",[\"err\"]],\"bj7nh3\":[\"API 키 재생성 오류: \",[\"err\"]],\"VSQxWH\":[\"구독 전환 중 오류 발생: \",[\"to\"],\".\"],\"JLxMta\":[\"비동기 이벤트 알림을 위한 Webhook 엔드포인트 설정.\"],\"cIgBjB\":[\"다음 사람 및 도메인을 이메일 동기화에서 제외\"],\"fV7V51\":[\"기존 개체\"],\"IZ4o2e\":[\"설정 종료\"],\"tXGQvS\":[\"선택한 노드는 생성 단계 노드여야 합니다.\"],\"bKBhgb\":[\"경험\"],\"LxRNPw\":[\"만료\"],\"SkXfL0\":[\"만료일\"],\"i9qiyR\":[\"만료까지 남은 시간\"],\"GS+Mus\":[\"내보내기\"],\"ep2rbf\":[\"레코드 내보내기\"],\"q46CjD\":[\"PDF로 내보내기\"],\"DaGxE0\":[\"보기 내보내기\"],\"X9kySA\":[\"즐겨찾기\"],\"zXgopL\":[\"필드 유형\"],\"vF68cg\":[\"필드\"],\"3w/aqw\":[\"필드 수\"],\"o7J4JM\":[\"필터\"],\"cSev+j\":[\"필터\"],\"glx6on\":[\"비밀번호를 잊으셨나요?\"],\"nLC6tu\":[\"프랑스어\"],\"aTieE0\":[\"월간에서 연간으로\"],\"K04lE5\":[\"연간에서 월간으로\"],\"scmRyR\":[\"전체 접근\"],\"xANKBj\":[\"기능\"],\"Weq9zb\":[\"일반\"],\"DDcvSo\":[\"독일어\"],\"NXEW3h\":[\"팀을 초대하여 워크스페이스를 최대한 활용하세요.\"],\"zSGbaR\":[\"구독 신청\"],\"2GT3Hf\":[\"글로벌\"],\"hWp1MY\":[\"Twenty 지원팀에 임시 접근 권한을 부여하여 문제를 해결하거나 콘텐츠를 복구할 수 있도록 하세요. 언제든지 접근 권한을 취소할 수 있습니다.\"],\"vLyv1R\":[\"숨기기\"],\"XTWO+W\":[\"아이콘 및 이름\"],\"sJGljQ\":[\"식별자\"],\"j843N3\":[\"이 키를 분실한 경우 다시 생성할 수 있지만, 이 키를 사용하는 모든 스크립트를 업데이트해야 합니다. 확인하려면 \\\"\",[\"confirmationValue\"],\"\\\"을 입력하세요.\"],\"NoNwIX\":[\"비활성\"],\"pZ/USH\":[\"색인\"],\"JE2tjr\":[\"입력은 카멜 케이스여야 하며 숫자로 시작할 수 없습니다\"],\"AwUsnG\":[\"인스턴스\"],\"nbfdhU\":[\"통합\"],\"NtFk/Z\":[\"잘못된 인증 제공자\"],\"B2Tpo0\":[\"잘못된 이메일\"],\"/m52AE\":[\"잘못된 이메일 또는 도메인\"],\"QdoUFL\":[\"잘못된 양식 값\"],\"0M8+El\":[\"이메일로 초대\"],\"PWIq/W\":[\"링크로 초대\"],\"3athPG\":[\"링크로 초대\"],\"5IfmKA\":[\"이메일 주소로 전송된 초대 링크\"],\"d+Y+rP\":[\"팀 초대\"],\"Lj7sBL\":[\"이탈리아어\"],\"dFtidv\":[\"일본어\"],\"h6S9Yz\":[\"한국어\"],\"zrpwCd\":[\"실험실\"],\"vXIe7J\":[\"언어\"],\"wL3cK8\":[\"최신\"],\"Kcjbmz\":[\"최신 날짜\"],\"pQjjYo\":[\"링크가 클립보드에 복사되었습니다\"],\"FgAxTj\":[\"로그아웃\"],\"nOhz3x\":[\"로그아웃\"],\"T6YjCk\":[\"회원 관리\"],\"4cjU2u\":[\"여기에서 워크스페이스의 회원을 관리하세요\"],\"FyFNsd\":[\"인터넷 계정을 관리하세요.\"],\"36kYu0\":[\"구독 관리\"],\"3Sdni6\":[\"완료로 표시\"],\"CK1KXz\":[\"최대\"],\"wlQNTg\":[\"회원\"],\"eTUF28\":[\"최소\"],\"3Siwmw\":[\"추가 옵션\"],\"iSLA/r\":[\"왼쪽으로 이동\"],\"Ubl2by\":[\"오른쪽으로 이동\"],\"6YtxFj\":[\"이름\"],\"z+6jaZ\":[\"API 키 이름\"],\"J7w8lI\":[\"워크스페이스 이름\"],\"2T8KCk\":[\"다음 레코드로 이동\"],\"veSA19\":[\"다음 버전으로 이동\"],\"ZTEho+\":[\"다음 워크플로로 이동\"],\"2tw9bo\":[\"이전 레코드로 이동\"],\"I+Pm5V\":[\"이전 버전으로 이동\"],\"QVUN3K\":[\"이전 워크플로로 이동\"],\"isRobC\":[\"새로운\"],\"Kcr9Fr\":[\"새 계정\"],\"o8MyXb\":[\"새 키\"],\"j313SZ\":[\"새 키\"],\"hFxdey\":[\"새 개체\"],\"7vhWI8\":[\"새 비밀번호\"],\"BcCzLv\":[\"새 레코드\"],\"2lmOC5\":[\"새 역할\"],\"U1DAok\":[\"새 Webhook\"],\"pwenQu\":[\"연결된 계정 없음\"],\"0uWxPM\":[\"아직 워크플로 실행 없음\"],\"AQCvCC\":[\"아직 워크플로 버전 없음\"],\"4wUkDk\":[\"비어 있지 않음\"],\"W0i24j\":[\"개체\"],\"B3toQF\":[\"개체\"],\"KNz3EF\":[\"잘 알려지지 않은 길\"],\"OV5wZZ\":[\"열림\"],\"0zpgxV\":[\"옵션\"],\"BzEFor\":[\"또는\"],\"/IX/7x\":[\"기타\"],\"boJlGf\":[\"페이지를 찾을 수 없음\"],\"8ZsakT\":[\"비밀번호\"],\"BxQ79w\":[\"비밀번호가 업데이트되었습니다\"],\"mi6Rel\":[\"비밀번호 재설정 링크가 이메일로 전송되었습니다\"],\"SrVzRe\":[\"퍼센트\"],\"yIK1GU\":[\"비어 있는 퍼센트\"],\"PWLd4c\":[\"비어 있지 않은 퍼센트\"],\"Bv3y5w\":[\"레코드 영구 삭제\"],\"N0+GsR\":[\"사진\"],\"jEw0Mr\":[\"유효한 URL을 입력하세요\"],\"6nsIo3\":[\"\\\"\",[\"confirmationValue\"],\"\\\"을 입력하여 이 API 키를 삭제할 것인지 확인하세요. 이 키를 사용하는 모든 스크립트는 작동이 중지됩니다.\"],\"mFZTXr\":[[\"confirmationText\"],\"을 입력하여 이 Webhook을 삭제할 것인지 확인하세요.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"포르투갈어 - 브라질\"],\"xtXHeo\":[\"포르투갈어 - 포르투갈\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"미리보기\"],\"LcET2C\":[\"개인정보 보호정책\"],\"vERlcd\":[\"프로필\"],\"YJgRqq\":[\"의사 영어\"],\"ibPuCP\":[\"문서 읽기\"],\"v3xM25\":[\"비밀번호 업데이트 링크가 포함된 이메일 받기\"],\"dSCufP\":[\"레코드 선택\"],\"vpZcGd\":[\"API 키 재생성\"],\"Mwqo5m\":[\"키 재생성\"],\"D+Mv78\":[\"키 재생성\"],\"5icoS1\":[\"릴리스\"],\"t/YqKh\":[\"제거\"],\"T/pF0Z\":[\"즐겨찾기에서 제거\"],\"KbS2K9\":[\"비밀번호 재설정\"],\"1IWc1n\":[\"다음으로 재설정\"],\"kx0s+n\":[\"결과\"],\"5dJK4M\":[\"역할\"],\"UX0N2y\":[\"워크플로를 실행하고 여기로 돌아와 실행 결과를 확인하세요\"],\"A1taO8\":[\"검색\"],\"8NBMeZ\":[\"'\",[\"commandMenuSearch\"],\"'으로 검색...\"],\"l1/uy2\":[\"필드 검색...\"],\"k7kp5/\":[\"색인 검색...\"],\"7taA9j\":[\"필드 검색\"],\"ofuw3g\":[\"개체 검색...\"],\"IMeaSJ\":[\"레코드 검색\"],\"a3LDKx\":[\"보안\"],\"QREcJS\":[\"활성 버전 보기\"],\"OpPn5Z\":[\"실행 보기\"],\"EtyY4+\":[\"버전 보기\"],\"lYhPN0\":[\"버전 기록 보기\"],\"xraglu\":[\"이 엔드포인트로 보내려는 이벤트를 선택하세요\"],\"AXTJAW\":[\"선호하는 언어 선택\"],\"mjK8F3\":[\"팀에 초대 이메일 보내기\"],\"yy5k7a\":[\"서버 관리자 패널\"],\"V7fgiB\":[\"이메일 공개 여부 설정, 차단 목록 관리 등을 할 수 있습니다.\"],\"cx14rp\":[\"도메인 이름 설정\"],\"tn41zE\":[\"하위 도메인 이름 설정\"],\"Tz0i8g\":[\"설정\"],\"Vy9kmk\":[\"이 링크를 공유하여 사용자를 워크스페이스에 초대하세요\"],\"gWk8gY\":[\"필드의 레이블을 변경하면 API 이름도 변경되어야 하나요?\"],\"5lWFkC\":[\"로그인\"],\"e+RpCP\":[\"가입하기\"],\"5v3IHX\":[\"싱글 사인온(SSO)\"],\"6Uau97\":[\"건너뛰기\"],\"f6Hub0\":[\"정렬\"],\"65A04M\":[\"스페인어\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"하위 도메인\"],\"omhc+7\":[\"이미 사용 중인 하위 도메인\"],\"OlC/tU\":[\"하위 도메인은 30자를 초과할 수 없습니다\"],\"ZETwlU\":[\"하위 도메인은 3자보다 짧을 수 없습니다\"],\"B5jRKH\":[\"구독이 \",[\"to\"],\"로 전환되었습니다\"],\"AxQiPW\":[\"합계\"],\"XYLcNv\":[\"지원\"],\"9yk9d1\":[[\"from\"],\"에서 전환\"],\"qi74XZ\":[[\"to\"],\"로 전환\"],\"L6Fg36\":[\"청구 \",[\"to\"],\"로 전환\"],\"AtzMpB\":[\"필드 레이블과 API 이름 동기화\"],\"E3AMmw\":[\"시스템 설정 - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"시스템 설정 - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"서비스 약관\"],\"NnH3pK\":[\"테스트\"],\"bU9B27\":[\"테스트 워크플로\"],\"2OUtmv\":[\"이 필드의 설명\"],\"VGZYbZ\":[\"계정에 연결된 이메일\"],\"h8mvCd\":[\"이 필드의 이름과 아이콘\"],\"L97sPr\":[\"찾고 계신 페이지는 이미 사라졌거나 존재하지 않습니다. 다시 정상화해 드리겠습니다\"],\"uWikAA\":[\"이 필드의 값\"],\"+69KDk\":[\"이 필드의 값은 고유해야 합니다\"],\"ynfkhb\":[\"비밀번호 업데이트 중 오류가 발생했습니다.\"],\"PmtLRf\":[\"문제가 발생했습니다\"],\"hqCwGc\":[\"이 작업은 취소할 수 없습니다. 이렇게 하면 사용자가 영구적으로 삭제되고 모든 할당에서 제거됩니다.\"],\"gWGuHC\":[\"이 작업은 취소할 수 없습니다. 이렇게 하면 전체 워크스페이스가 영구적으로 삭제됩니다. <0/> 확인하려면 이메일을 입력하세요.\"],\"n9nSNJ\":[\"시간 형식\"],\"aqMzDX\":[\"월간으로\"],\"WXXiXO\":[\"연간으로\"],\"PiUt3N\":[\"트리거 유형\"],\"IQ5pAL\":[\"트리거 유형은 수동이어야 합니다 - 선택된 레코드가 없는 경우\"],\"+zy2Nq\":[\"유형\"],\"U83IeL\":[\"아무거나 입력하세요\"],\"wSXm5S\":[\"고유\"],\"GQCXQS\":[\"무제한 연락처\"],\"ONWvwQ\":[\"업로드\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"초안으로 사용\"],\"oTTQsc\":[\"문자, 숫자, 대시만 사용하세요. 문자 또는 숫자로 시작하고 끝내세요\"],\"c6uZUV\":[\"API를 사용하거나 첫 번째 \",[\"objectLabel\"],\"을 수동으로 추가하세요\"],\"7PzzBU\":[\"사용자\"],\"IjyOjp\":[\"사용자가 로그인하지 않았습니다\"],\"fXVIZq\":[\"값\"],\"KANz0G\":[\"청구 세부 정보 보기\"],\"6n7jtr\":[\"시각화\"],\"id6ein\":[\"10MB 미만의 정사각형 PNG, JPEG 및 GIF를 지원합니다\"],\"ZS7vYp\":[\"모든 새로운 이벤트에 대해 이 엔드포인트로 POST 요청을 보냅니다\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[[\"workspaceName\"],\"에 오신 것을 환영합니다\"],\"C51ilI\":[\"API 키 만료일.\"],\"leUubq\":[\"키 비활성화 시기\"],\"wvyffT\":[\"워크플로를 테스트할 수 없음\"],\"pmUArF\":[\"워크스페이스\"],\"VicISP\":[\"워크스페이스 삭제\"],\"Q9pNST\":[\"설명을 작성하세요\"],\"3d1wCB\":[\"예\"],\"zSkMV0\":[\"1년 요금이 즉시 청구됩니다.\"],\"XVnj6K\":[\"크레딧 잔액이 월 청구서 결제에 사용됩니다.\"],\"9ivpwk\":[\"표시될 이름\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"워크스페이스가 비활성화됩니다\"]}")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 fff8e4078..df14547e6 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("{\"ROdDR9\":[[\"aggregateLabel\"],\" ōƒ \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" ÀƤĨ Ķēŷ\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 ŵōŕķƒĺōŵ ńōďē ēxēćũţĩōńś\"],\"4EdXYs\":[\"12ĥ (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Ćōńƒĩĝũŕē ƒĩēĺď\"],\"QsMprd\":[\"24ĥ (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"Àƀōŕţ\"],\"uyJsf6\":[\"Àƀōũţ\"],\"AeXO77\":[\"Àććōũńţ\"],\"nD0Y+a\":[\"Àććōũńţ Ďēĺēţĩōń\"],\"bPwFdf\":[\"Àććōũńţś\"],\"FQBaXG\":[\"Àćţĩvàţē\"],\"tu8A/k\":[\"Àćţĩvàţē Ŵōŕķƒĺōŵ\"],\"F6pfE9\":[\"Àćţĩvē\"],\"Mue4oc\":[\"Àćţĩvē ÀƤĨ ķēŷś ćŕēàţēď ƀŷ ŷōũ ōŕ ŷōũŕ ţēàḿ.\"],\"m16xKo\":[\"Àďď\"],\"DpV70M\":[\"Àďď Ƒĩēĺď\"],\"dEO3Zx\":[\"Àďď ōƀĴēćţ\"],\"sgXUv+\":[\"Àďď ŚŚŌ Ĩďēńţĩţŷ Ƥŕōvĩďēŕ\"],\"5+ttxv\":[\"Àďď ţō ƀĺōćķĺĩśţ\"],\"pBsoKL\":[\"Àďď ţō ƒàvōŕĩţēś\"],\"m2qDV8\":[\"Àďď ŷōũŕ ƒĩŕśţ \",[\"objectLabel\"]],\"vLO+NG\":[\"Àďďēď \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Àĺĺ\"],\"3saA7W\":[\"Àĺĺ (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Àĺĺ ŕōĺēś\"],\"GMx1K0\":[\"Àĺĺōŵ ĺōĝĩńś ţĥŕōũĝĥ Ĝōōĝĺē'ś śĩńĝĺē śĩĝń-ōń ƒũńćţĩōńàĺĩţŷ.\"],\"dea+zy\":[\"Àĺĺōŵ ĺōĝĩńś ţĥŕōũĝĥ Ḿĩćŕōśōƒţ'ś śĩńĝĺē śĩĝń-ōń ƒũńćţĩōńàĺĩţŷ.\"],\"wMg43c\":[\"Àĺĺōŵ ţĥē ĩńvĩţàţĩōń ōƒ ńēŵ ũśēŕś ƀŷ śĥàŕĩńĝ àń ĩńvĩţē ĺĩńķ.\"],\"vHeVg5\":[\"Àĺĺōŵ ũśēŕś ţō śĩĝń ĩń ŵĩţĥ àń ēḿàĩĺ àńď ƥàśśŵōŕď.\"],\"LG4K0m\":[\"Àń ēŕŕōŕ ōććũŕŕēď ŵĥĩĺē ũƥďàţĩńĝ ƥàśśŵōŕď\"],\"mJ6m4C\":[\"Àń ōƥţĩōńàĺ ďēśćŕĩƥţĩōń\"],\"HZFm5R\":[\"àńď\"],\"0RqpZr\":[\"ÀƤĨ & Ŵēƀĥōōķś\"],\"yRnk5W\":[\"ÀƤĨ Ķēŷ\"],\"5h8ooz\":[\"ÀƤĨ ķēŷś\"],\"kAtj+q\":[\"ÀƤĨ Ńàḿē\"],\"aAIQg2\":[\"Àƥƥēàŕàńćē\"],\"3iX0kh\":[\"Àŕē ŷōũ śũŕē ţĥàţ ŷōũ ŵàńţ ţō ćĥàńĝē ŷōũŕ ƀĩĺĺĩńĝ ĩńţēŕvàĺ?\"],\"nYD/Cq\":[\"Àśćēńďĩńĝ\"],\"rfYmIr\":[\"Àśśĩĝń ŕōĺēś ţō śƥēćĩƒŷ ēàćĥ ḿēḿƀēŕ'ś àććēśś ƥēŕḿĩśśĩōńś\"],\"lxQ+5m\":[\"Àśśĩĝńēď ţō\"],\"H8QGSx\":[\"Àţ ĺēàśţ 8 ćĥàŕàćţēŕś ĺōńĝ.\"],\"Y7Dx6e\":[\"Àţ ĺēàśţ ōńē àũţĥēńţĩćàţĩōń ḿēţĥōď ḿũśţ ƀē ēńàƀĺēď\"],\"P8fBlG\":[\"Àũţĥēńţĩćàţĩōń\"],\"yIVrHZ\":[\"Àũţĥōŕĩźē\"],\"3uQmjD\":[\"Àvēŕàĝē\"],\"Dht9W3\":[\"ßàćķ ţō ćōńţēńţ\"],\"R+w/Va\":[\"ßĩĺĺĩńĝ\"],\"K1172m\":[\"ßĺōćķĺĩśţ\"],\"2yl5lQ\":[\"ßōōķ à Ćàĺĺ\"],\"8Pfllj\":[\"ßŷ ũśĩńĝ Ţŵēńţŷ, ŷōũ àĝŕēē ţō ţĥē\"],\"PmmvzS\":[\"Ćàĺćũĺàţē\"],\"AjVXBS\":[\"Ćàĺēńďàŕ\"],\"EUpfsd\":[\"Ćàĺēńďàŕś\"],\"dEgA5A\":[\"Ćàńćēĺ\"],\"0TllC8\":[\"Ćàńćēĺ àńŷţĩḿē\"],\"rRK/Lf\":[\"Ćàńćēĺ Ƥĺàń\"],\"N6gPiD\":[\"Ćàńćēĺ ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"OfzMnb\":[\"Ćĥàńĝē \",[\"to\"]],\"VhMDMg\":[\"Ćĥàńĝē Ƥàśśŵōŕď\"],\"SviKkE\":[\"Ćĥĩńēśē — Śĩḿƥĺĩƒĩēď\"],\"dzb4Ep\":[\"Ćĥĩńēśē — Ţŕàďĩţĩōńàĺ\"],\"JEFFOR\":[\"Ćĥōōśē àń ōƀĴēćţ\"],\"KT6rEB\":[\"Ćĥōōśē ŷōũŕ ƥŕōvĩďēŕ\"],\"9qP96p\":[\"Ćĥōōśē ŷōũŕ Ţŕĩàĺ\"],\"yz7wBu\":[\"Ćĺōśē\"],\"+zUMwJ\":[\"Ćōńƒĩĝũŕē àń ŚŚŌ ćōńńēćţĩōń\"],\"QTNsSm\":[\"Ćōńƒĩĝũŕē àńď ćũśţōḿĩźē ŷōũŕ ćàĺēńďàŕ ƥŕēƒēŕēńćēś.\"],\"aGwm+D\":[\"Ćōńƒĩĝũŕē ĥōŵ ďàţēś àŕē ďĩśƥĺàŷēď àćŕōśś ţĥē àƥƥ\"],\"Bh4GBD\":[\"Ćōńƒĩĝũŕē ŷōũŕ ēḿàĩĺś àńď ćàĺēńďàŕ śēţţĩńĝś.\"],\"D8ATlr\":[\"Ćōńńēćţ à ńēŵ àććōũńţ ţō ŷōũŕ ŵōŕķśƥàćē\"],\"Zgi9Fd\":[\"Ćōńńēćţ ŵĩţĥ Ĝōōĝĺē\"],\"IOfqM8\":[\"Ćōńńēćţ ŵĩţĥ Ḿĩćŕōśōƒţ\"],\"9TzudL\":[\"Ćōńńēćţēď àććōũńţś\"],\"M73whl\":[\"Ćōńţēxţ\"],\"xGVfLh\":[\"Ćōńţĩńũē\"],\"RvVi9c\":[\"Ćōńţĩńũē ŵĩţĥ Ēḿàĩĺ\"],\"oZyG4C\":[\"Ćōńţĩńũē ŵĩţĥ Ĝōōĝĺē\"],\"ztoybH\":[\"Ćōńţĩńũē ŵĩţĥ Ḿĩćŕōśōƒţ\"],\"CcGOj+\":[\"Ćōƥĩĺōţ\"],\"7eVkEH\":[\"Ćōƥŷ ĩńvĩţàţĩōń ĺĩńķ\"],\"Ej5euX\":[\"Ćōƥŷ ţĥĩś ķēŷ àś ĩţ ŵĩĺĺ ńōţ ƀē vĩśĩƀĺē àĝàĩń\"],\"wBMjJ2\":[\"Ćōũńţ\"],\"EkZfen\":[\"Ćōũńţ àĺĺ\"],\"vQJINq\":[\"Ćōũńţ ēḿƥţŷ\"],\"DzRsDJ\":[\"Ćōũńţ ńōţ ēḿƥţŷ\"],\"9FZBbf\":[\"Ćōũńţ ũńĩǫũē vàĺũēś\"],\"zNoOC2\":[\"Ćŕēàţē à ŵōŕķƒĺōŵ àńď ŕēţũŕń ĥēŕē ţō vĩēŵ ĩţś vēŕśĩōńś\"],\"uXGLuq\":[\"Ćŕēàţē ÀƤĨ ķēŷ\"],\"d0DCww\":[\"Ćŕēàţē ńēŵ ŕēćōŕď\"],\"dkAPxi\":[\"Ćŕēàţē Ŵēƀĥōōķ\"],\"8skTDV\":[\"Ćũśţōḿ ōƀĴēćţś\"],\"qt+EaC\":[\"Ćũśţōḿĩśē ţĥē ƒĩēĺďś àvàĩĺàƀĺē ĩń ţĥē \",[\"objectLabelSingular\"],\" vĩēŵś.\"],\"CMhr4u\":[\"Ćũśţōḿĩźē Ďōḿàĩń\"],\"bCJa9l\":[\"Ćũśţōḿĩźē ŷōũŕ ŵōŕķśƥàćē śēćũŕĩţŷ\"],\"Zz6Cxn\":[\"Ďàńĝēŕ źōńē\"],\"5cNMFz\":[\"Ďàţà ḿōďēĺ\"],\"r+cVRP\":[\"Ďàţà ţŷƥē\"],\"mYGY3B\":[\"Ďàţē\"],\"Ud9zHv\":[\"Ďàţē àńď ţĩḿē\"],\"5y3O+A\":[\"Ďēàćţĩvàţē\"],\"qk4i22\":[\"Ďēàćţĩvàţē \\\"Śŷńćĥŕōńĩźē ŌƀĴēćţś Ĺàƀēĺś àńď ÀƤĨ Ńàḿēś\\\" ţō śēţ à ćũśţōḿ ÀƤĨ ńàḿē\"],\"gexAq8\":[\"Ďēàćţĩvàţē ţĥĩś ƒĩēĺď\"],\"4tpC8V\":[\"Ďēàćţĩvàţē Ŵōŕķƒĺōŵ\"],\"Y2ImVJ\":[\"Ďēƒĩńē ţĥē ńàḿē àńď ďēśćŕĩƥţĩōń ōƒ ŷōũŕ ōƀĴēćţ\"],\"cnGeoo\":[\"Ďēĺēţē\"],\"ZDGm40\":[\"Ďēĺēţē àććōũńţ\"],\"gAz0S5\":[\"Ďēĺēţē àććōũńţ àńď àĺĺ ţĥē àśśōćĩàţēď ďàţà\"],\"hGfWDm\":[\"Ďēĺēţē ÀƤĨ ķēŷ\"],\"4dpwsE\":[\"Ďēĺēţē ŕēćōŕď\"],\"kf0A63\":[\"Ďēĺēţē ŕēćōŕďś\"],\"T6S2Ns\":[\"Ďēĺēţē ţĥĩś ĩńţēĝŕàţĩōń\"],\"snMaH4\":[\"Ďēĺēţē ŵēƀĥōōķ\"],\"kYu0eF\":[\"Ďēĺēţē ŵōŕķśƥàćē\"],\"mk2Ygs\":[\"Ďēĺēţē ŷōũŕ ŵĥōĺē ŵōŕķśƥàćē\"],\"Cko536\":[\"Ďēśćēńďĩńĝ\"],\"Nu4oKW\":[\"Ďēśćŕĩƥţĩōń\"],\"2xxBws\":[\"Ďēśţŕōŷ\"],\"n+SX4g\":[\"Ďēvēĺōƥēŕś\"],\"zAg2B9\":[\"Ďĩśćàŕď Ďŕàƒţ\"],\"i66xz9\":[\"Ďĩśƥĺàŷ àś ŕēĺàţĩvē ďàţē\"],\"EoKe5U\":[\"Ďōḿàĩń\"],\"QVVmxi\":[\"Ē.ĝ. ƀàćķōƒƒĩćē ĩńţēĝŕàţĩōń\"],\"tOkc8o\":[\"Ēàŕĺĩēśţ\"],\"JTbQuO\":[\"Ēàŕĺĩēśţ ďàţē\"],\"v+uKyy\":[\"Ēďĩţ ƀĩĺĺĩńĝ ĩńţēŕvàĺ\"],\"h2KoTu\":[\"Ēďĩţ ƥàŷḿēńţ ḿēţĥōď, śēē ŷōũŕ ĩńvōĩćēś àńď ḿōŕē\"],\"6o1M/Q\":[\"Ēďĩţ ŷōũŕ śũƀďōḿàĩń ńàḿē ōŕ śēţ à ćũśţōḿ ďōḿàĩń.\"],\"O3oNi5\":[\"Ēḿàĩĺ\"],\"lfQsvW\":[\"Ēḿàĩĺ ĩńţēĝŕàţĩōń\"],\"QT/Wo7\":[\"Ēḿàĩĺ ōŕ ďōḿàĩń ĩś àĺŕēàďŷ ĩń ƀĺōćķĺĩśţ\"],\"BXEcos\":[\"Ēḿàĩĺś\"],\"eXoH4Q\":[\"ēḿƥĺōŷēēś\"],\"gqv5ZL\":[\"Ēḿƥĺōŷēēś\"],\"N2S1rs\":[\"Ēḿƥţŷ\"],\"T3juzf\":[\"Ēńďƥōĩńţ ŨŔĹ\"],\"lYGfRP\":[\"Ēńĝĺĩśĥ\"],\"/bfFKe\":[\"ĒńĴōŷ à \",[\"withCreditCardTrialPeriodDuration\"],\"-ďàŷś ƒŕēē ţŕĩàĺ\"],\"GpB8YV\":[\"Ēńţēŕƥŕĩśē\"],\"c3qGJX\":[\"Ēŕŕōŕ ďēĺēţĩńĝ àƥĩ ķēŷ: \",[\"err\"]],\"bj7nh3\":[\"Ēŕŕōŕ ŕēĝēńēŕàţĩńĝ àƥĩ ķēŷ: \",[\"err\"]],\"VSQxWH\":[\"Ēŕŕōŕ ŵĥĩĺē śŵĩţćĥĩńĝ śũƀśćŕĩƥţĩōń \",[\"to\"],\".\"],\"JLxMta\":[\"Ēśţàƀĺĩśĥ Ŵēƀĥōōķ ēńďƥōĩńţś ƒōŕ ńōţĩƒĩćàţĩōńś ōń àśŷńćĥŕōńōũś ēvēńţś.\"],\"cIgBjB\":[\"Ēxćĺũďē ţĥē ƒōĺĺōŵĩńĝ ƥēōƥĺē àńď ďōḿàĩńś ƒŕōḿ ḿŷ ēḿàĩĺ śŷńć\"],\"fV7V51\":[\"Ēxĩśţĩńĝ ōƀĴēćţś\"],\"IZ4o2e\":[\"Ēxĩţ Śēţţĩńĝś\"],\"tXGQvS\":[\"Ēxƥēćţēď śēĺēćţēď ńōďē ţō ƀē à ćŕēàţē śţēƥ ńōďē.\"],\"bKBhgb\":[\"Ēxƥēŕĩēńćē\"],\"LxRNPw\":[\"Ēxƥĩŕàţĩōń\"],\"SkXfL0\":[\"Ēxƥĩŕàţĩōń Ďàţē\"],\"i9qiyR\":[\"Ēxƥĩŕēś ĩń\"],\"GS+Mus\":[\"Ēxƥōŕţ\"],\"ep2rbf\":[\"Ēxƥōŕţ ŕēćōŕďś\"],\"q46CjD\":[\"Ēxƥōŕţ ţō ƤĎƑ\"],\"DaGxE0\":[\"Ēxƥōŕţ vĩēŵ\"],\"X9kySA\":[\"Ƒàvōŕĩţēś\"],\"zXgopL\":[\"Ƒĩēĺď ţŷƥē\"],\"vF68cg\":[\"Ƒĩēĺďś\"],\"3w/aqw\":[\"Ƒĩēĺďś Ćōũńţ\"],\"o7J4JM\":[\"Ƒĩĺţēŕ\"],\"cSev+j\":[\"Ƒĩĺţēŕś\"],\"glx6on\":[\"Ƒōŕĝōţ ŷōũŕ ƥàśśŵōŕď?\"],\"nLC6tu\":[\"Ƒŕēńćĥ\"],\"aTieE0\":[\"ƒŕōḿ ḿōńţĥĺŷ ţō ŷēàŕĺŷ\"],\"K04lE5\":[\"ƒŕōḿ ŷēàŕĺŷ ţō ḿōńţĥĺŷ\"],\"scmRyR\":[\"Ƒũĺĺ àććēśś\"],\"xANKBj\":[\"Ƒũńćţĩōńś\"],\"Weq9zb\":[\"Ĝēńēŕàĺ\"],\"DDcvSo\":[\"Ĝēŕḿàń\"],\"NXEW3h\":[\"Ĝēţ ţĥē ḿōśţ ōũţ ōƒ ŷōũŕ ŵōŕķśƥàćē ƀŷ ĩńvĩţĩńĝ ŷōũŕ ţēàḿ.\"],\"zSGbaR\":[\"Ĝēţ ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"2GT3Hf\":[\"Ĝĺōƀàĺ\"],\"hWp1MY\":[\"Ĝŕàńţ Ţŵēńţŷ śũƥƥōŕţ ţēḿƥōŕàŕŷ àććēśś ţō ŷōũŕ ŵōŕķśƥàćē śō ŵē ćàń ţŕōũƀĺēśĥōōţ ƥŕōƀĺēḿś ōŕ ŕēćōvēŕ ćōńţēńţ ōń ŷōũŕ ƀēĥàĺƒ. Ŷōũ ćàń ŕēvōķē àććēśś àţ àńŷ ţĩḿē.\"],\"vLyv1R\":[\"Ĥĩďē\"],\"XTWO+W\":[\"Ĩćōń àńď Ńàḿē\"],\"sJGljQ\":[\"Ĩďēńţĩƒĩēŕ\"],\"j843N3\":[\"Ĩƒ ŷōũ’vē ĺōśţ ţĥĩś ķēŷ, ŷōũ ćàń ŕēĝēńēŕàţē ĩţ, ƀũţ ƀē àŵàŕē ţĥàţ àńŷ śćŕĩƥţ ũśĩńĝ ţĥĩś ķēŷ ŵĩĺĺ ńēēď ţō ƀē ũƥďàţēď. Ƥĺēàśē ţŷƥē\\\"\",[\"confirmationValue\"],\"\\\" ţō ćōńƒĩŕḿ.\"],\"NoNwIX\":[\"Ĩńàćţĩvē\"],\"pZ/USH\":[\"Ĩńďēxēś\"],\"JE2tjr\":[\"Ĩńƥũţ ḿũśţ ƀē ĩń ćàḿēĺ ćàśē àńď ćàńńōţ śţàŕţ ŵĩţĥ à ńũḿƀēŕ\"],\"AwUsnG\":[\"Ĩńśţàńćēś\"],\"nbfdhU\":[\"Ĩńţēĝŕàţĩōńś\"],\"NtFk/Z\":[\"Ĩńvàĺĩď àũţĥ ƥŕōvĩďēŕ\"],\"B2Tpo0\":[\"Ĩńvàĺĩď ēḿàĩĺ\"],\"/m52AE\":[\"Ĩńvàĺĩď ēḿàĩĺ ōŕ ďōḿàĩń\"],\"QdoUFL\":[\"Ĩńvàĺĩď ƒōŕḿ vàĺũēś\"],\"0M8+El\":[\"Ĩńvĩţē ƀŷ ēḿàĩĺ\"],\"PWIq/W\":[\"Ĩńvĩţē ƀŷ ĺĩńķ\"],\"3athPG\":[\"Ĩńvĩţē ƀŷ Ĺĩńķ\"],\"5IfmKA\":[\"Ĩńvĩţē ĺĩńķ śēńţ ţō ēḿàĩĺ àďďŕēśśēś\"],\"d+Y+rP\":[\"Ĩńvĩţē ŷōũŕ ţēàḿ\"],\"Lj7sBL\":[\"Ĩţàĺĩàń\"],\"dFtidv\":[\"ĵàƥàńēśē\"],\"h6S9Yz\":[\"Ķōŕēàń\"],\"zrpwCd\":[\"Ĺàƀ\"],\"vXIe7J\":[\"Ĺàńĝũàĝē\"],\"wL3cK8\":[\"Ĺàţēśţ\"],\"Kcjbmz\":[\"Ĺàţēśţ ďàţē\"],\"pQjjYo\":[\"Ĺĩńķ ćōƥĩēď ţō ćĺĩƥƀōàŕď\"],\"FgAxTj\":[\"Ĺōĝ ōũţ\"],\"nOhz3x\":[\"Ĺōĝōũţ\"],\"T6YjCk\":[\"Ḿàńàĝē Ḿēḿƀēŕś\"],\"4cjU2u\":[\"Ḿàńàĝē ţĥē ḿēḿƀēŕś ōƒ ŷōũŕ śƥàćē ĥēŕē\"],\"FyFNsd\":[\"Ḿàńàĝē ŷōũŕ ĩńţēŕńēţ àććōũńţś.\"],\"36kYu0\":[\"Ḿàńàĝē ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"3Sdni6\":[\"Ḿàŕķ àś ďōńē\"],\"CK1KXz\":[\"Ḿàx\"],\"wlQNTg\":[\"Ḿēḿƀēŕś\"],\"eTUF28\":[\"Ḿĩń\"],\"3Siwmw\":[\"Ḿōŕē ōƥţĩōńś\"],\"iSLA/r\":[\"Ḿōvē ĺēƒţ\"],\"Ubl2by\":[\"Ḿōvē ŕĩĝĥţ\"],\"6YtxFj\":[\"Ńàḿē\"],\"z+6jaZ\":[\"Ńàḿē ōƒ ŷōũŕ ÀƤĨ ķēŷ\"],\"J7w8lI\":[\"Ńàḿē ōƒ ŷōũŕ ŵōŕķśƥàćē\"],\"2T8KCk\":[\"Ńàvĩĝàţē ţō ńēxţ ŕēćōŕď\"],\"veSA19\":[\"Ńàvĩĝàţē ţō ńēxţ vēŕśĩōń\"],\"ZTEho+\":[\"Ńàvĩĝàţē ţō ńēxţ ŵōŕķƒĺōŵ\"],\"2tw9bo\":[\"Ńàvĩĝàţē ţō ƥŕēvĩōũś ŕēćōŕď\"],\"I+Pm5V\":[\"Ńàvĩĝàţē ţō ƥŕēvĩōũś vēŕśĩōń\"],\"QVUN3K\":[\"Ńàvĩĝàţē ţō ƥŕēvĩōũś ŵōŕķƒĺōŵ\"],\"isRobC\":[\"Ńēŵ\"],\"Kcr9Fr\":[\"Ńēŵ àććōũńţ\"],\"o8MyXb\":[\"Ńēŵ ķēŷ\"],\"j313SZ\":[\"Ńēŵ Ķēŷ\"],\"hFxdey\":[\"Ńēŵ ŌƀĴēćţ\"],\"7vhWI8\":[\"Ńēŵ Ƥàśśŵōŕď\"],\"BcCzLv\":[\"Ńēŵ ŕēćōŕď\"],\"2lmOC5\":[\"Ńēŵ Ŕōĺē\"],\"U1DAok\":[\"Ńēŵ Ŵēƀĥōōķ\"],\"pwenQu\":[\"Ńō ćōńńēćţēď àććōũńţ\"],\"0uWxPM\":[\"Ńō ŵōŕķƒĺōŵ ŕũńś ŷēţ\"],\"AQCvCC\":[\"Ńō ŵōŕķƒĺōŵ vēŕśĩōńś ŷēţ\"],\"4wUkDk\":[\"Ńōţ ēḿƥţŷ\"],\"W0i24j\":[\"ŌƀĴēćţ\"],\"B3toQF\":[\"ŌƀĴēćţś\"],\"KNz3EF\":[\"Ōƒƒ ţĥē ƀēàţēń ƥàţĥ\"],\"OV5wZZ\":[\"Ōƥēńēď\"],\"0zpgxV\":[\"Ōƥţĩōńś\"],\"BzEFor\":[\"ōŕ\"],\"/IX/7x\":[\"Ōţĥēŕ\"],\"boJlGf\":[\"Ƥàĝē Ńōţ Ƒōũńď\"],\"8ZsakT\":[\"Ƥàśśŵōŕď\"],\"BxQ79w\":[\"Ƥàśśŵōŕď ĥàś ƀēēń ũƥďàţēď\"],\"mi6Rel\":[\"Ƥàśśŵōŕď ŕēśēţ ĺĩńķ ĥàś ƀēēń śēńţ ţō ţĥē ēḿàĩĺ\"],\"SrVzRe\":[\"Ƥēŕćēńţ\"],\"yIK1GU\":[\"Ƥēŕćēńţ ēḿƥţŷ\"],\"PWLd4c\":[\"Ƥēŕćēńţ ńōţ ēḿƥţŷ\"],\"Bv3y5w\":[\"Ƥēŕḿàńēńţĺŷ ďēśţŕōŷ ŕēćōŕď\"],\"N0+GsR\":[\"Ƥĩćţũŕē\"],\"jEw0Mr\":[\"Ƥĺēàśē ēńţēŕ à vàĺĩď ŨŔĹ\"],\"6nsIo3\":[\"Ƥĺēàśē ţŷƥē \\\"\",[\"confirmationValue\"],\"\\\" ţō ćōńƒĩŕḿ ŷōũ ŵàńţ ţō ďēĺēţē ţĥĩś ÀƤĨ Ķēŷ. ßē àŵàŕē ţĥàţ àńŷ śćŕĩƥţ ũśĩńĝ ţĥĩś ķēŷ ŵĩĺĺ śţōƥ ŵōŕķĩńĝ.\"],\"mFZTXr\":[\"Ƥĺēàśē ţŷƥē \",[\"confirmationText\"],\" ţō ćōńƒĩŕḿ ŷōũ ŵàńţ ţō ďēĺēţē ţĥĩś ŵēƀĥōōķ.\"],\"MOERNx\":[\"Ƥōŕţũĝũēśē\"],\"0nsqwk\":[\"Ƥōŕţũĝũēśē — ßŕàźĩĺ\"],\"xtXHeo\":[\"Ƥōŕţũĝũēśē — Ƥōŕţũĝàĺ\"],\"R7+D0/\":[\"Ƥōŕţũĝũēśē (ßŕàźĩĺ)\"],\"512Uma\":[\"Ƥōŕţũĝũēśē (Ƥōŕţũĝàĺ)\"],\"rdUucN\":[\"Ƥŕēvĩēŵ\"],\"LcET2C\":[\"Ƥŕĩvàćŷ Ƥōĺĩćŷ\"],\"vERlcd\":[\"Ƥŕōƒĩĺē\"],\"YJgRqq\":[\"Ƥśēũďō-Ēńĝĺĩśĥ\"],\"ibPuCP\":[\"Ŕēàď ďōćũḿēńţàţĩōń\"],\"v3xM25\":[\"Ŕēćēĩvē àń ēḿàĩĺ ćōńţàĩńĩńĝ ƥàśśŵōŕď ũƥďàţē ĺĩńķ\"],\"dSCufP\":[\"Ŕēćōŕď Śēĺēćţĩōń\"],\"vpZcGd\":[\"Ŕēĝēńēŕàţē àń ÀƤĨ ķēŷ\"],\"Mwqo5m\":[\"Ŕēĝēńēŕàţē ķēŷ\"],\"D+Mv78\":[\"Ŕēĝēńēŕàţē Ķēŷ\"],\"5icoS1\":[\"Ŕēĺēàśēś\"],\"t/YqKh\":[\"Ŕēḿōvē\"],\"T/pF0Z\":[\"Ŕēḿōvē ƒŕōḿ ƒàvōŕĩţēś\"],\"KbS2K9\":[\"Ŕēśēţ Ƥàśśŵōŕď\"],\"1IWc1n\":[\"Ŕēśēţ ţō\"],\"kx0s+n\":[\"Ŕēśũĺţś\"],\"5dJK4M\":[\"Ŕōĺēś\"],\"UX0N2y\":[\"Ŕũń à ŵōŕķƒĺōŵ àńď ŕēţũŕń ĥēŕē ţō vĩēŵ ĩţś ēxēćũţĩōńś\"],\"A1taO8\":[\"Śēàŕćĥ\"],\"8NBMeZ\":[\"Śēàŕćĥ '\",[\"commandMenuSearch\"],\"' ŵĩţĥ...\"],\"l1/uy2\":[\"Śēàŕćĥ à ƒĩēĺď...\"],\"k7kp5/\":[\"Śēàŕćĥ àń ĩńďēx...\"],\"7taA9j\":[\"Śēàŕćĥ ƒĩēĺďś\"],\"ofuw3g\":[\"Śēàŕćĥ ƒōŕ àń ōƀĴēćţ...\"],\"IMeaSJ\":[\"Śēàŕćĥ ŕēćōŕďś\"],\"a3LDKx\":[\"Śēćũŕĩţŷ\"],\"QREcJS\":[\"Śēē àćţĩvē vēŕśĩōń\"],\"OpPn5Z\":[\"Śēē ŕũńś\"],\"EtyY4+\":[\"Śēē vēŕśĩōńś\"],\"lYhPN0\":[\"Śēē vēŕśĩōńś ĥĩśţōŕŷ\"],\"xraglu\":[\"Śēĺēćţ ţĥē ēvēńţś ŷōũ ŵĩśĥ ţō śēńď ţō ţĥĩś ēńďƥōĩńţ\"],\"AXTJAW\":[\"Śēĺēćţ ŷōũŕ ƥŕēƒēŕŕēď ĺàńĝũàĝē\"],\"mjK8F3\":[\"Śēńď àń ĩńvĩţē ēḿàĩĺ ţō ŷōũŕ ţēàḿ\"],\"yy5k7a\":[\"Śēŕvēŕ Àďḿĩń Ƥàńēĺ\"],\"V7fgiB\":[\"Śēţ ēḿàĩĺ vĩśĩƀĩĺĩţŷ, ḿàńàĝē ŷōũŕ ƀĺōćķĺĩśţ àńď ḿōŕē.\"],\"cx14rp\":[\"Śēţ ţĥē ńàḿē ōƒ ŷōũŕ ďōḿàĩń\"],\"tn41zE\":[\"Śēţ ţĥē ńàḿē ōƒ ŷōũŕ śũƀďōḿàĩń\"],\"Tz0i8g\":[\"Śēţţĩńĝś\"],\"Vy9kmk\":[\"Śĥàŕē ţĥĩś ĺĩńķ ţō ĩńvĩţē ũśēŕś ţō Ĵōĩń ŷōũŕ ŵōŕķśƥàćē\"],\"gWk8gY\":[\"Śĥōũĺď ćĥàńĝĩńĝ à ƒĩēĺď'ś ĺàƀēĺ àĺśō ćĥàńĝē ţĥē ÀƤĨ ńàḿē?\"],\"5lWFkC\":[\"Śĩĝń ĩń\"],\"e+RpCP\":[\"Śĩĝń ũƥ\"],\"5v3IHX\":[\"Śĩńĝĺē śĩĝń-ōń (ŚŚŌ)\"],\"6Uau97\":[\"Śķĩƥ\"],\"f6Hub0\":[\"Śōŕţ\"],\"65A04M\":[\"Śƥàńĩśĥ\"],\"vnS6Rf\":[\"ŚŚŌ\"],\"ku9TbG\":[\"Śũƀďōḿàĩń\"],\"omhc+7\":[\"Śũƀďōḿàĩń àĺŕēàďŷ ţàķēń\"],\"OlC/tU\":[\"Śũƀďōḿàĩń ćàń ńōţ ƀē ĺōńĝēŕ ţĥàń 30 ćĥàŕàćţēŕś\"],\"ZETwlU\":[\"Śũƀďōḿàĩń ćàń ńōţ ƀē śĥōŕţēŕ ţĥàń 3 ćĥàŕàćţēŕś\"],\"B5jRKH\":[\"Śũƀśćŕĩƥţĩōń ĥàś ƀēēń śŵĩţćĥēď \",[\"to\"]],\"AxQiPW\":[\"Śũḿ\"],\"XYLcNv\":[\"Śũƥƥōŕţ\"],\"9yk9d1\":[\"Śŵĩţćĥ \",[\"from\"]],\"qi74XZ\":[\"Śŵĩţćĥ \",[\"to\"]],\"L6Fg36\":[\"Śŵĩţćĥ ƀĩĺĺĩńĝ \",[\"to\"]],\"AtzMpB\":[\"Śŷńćĥŕōńĩźē Ƒĩēĺď Ĺàƀēĺ àńď ÀƤĨ Ńàḿē\"],\"E3AMmw\":[\"Śŷśţēḿ śēţţĩńĝś - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Śŷśţēḿ Śēţţĩńĝś - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Ţēŕḿś ōƒ Śēŕvĩćē\"],\"NnH3pK\":[\"Ţēśţ\"],\"bU9B27\":[\"Ţēśţ Ŵōŕķƒĺōŵ\"],\"2OUtmv\":[\"Ţĥē ďēśćŕĩƥţĩōń ōƒ ţĥĩś ƒĩēĺď\"],\"VGZYbZ\":[\"Ţĥē ēḿàĩĺ àśśōćĩàţēď ţō ŷōũŕ àććōũńţ\"],\"h8mvCd\":[\"Ţĥē ńàḿē àńď ĩćōń ōƒ ţĥĩś ƒĩēĺď\"],\"L97sPr\":[\"Ţĥē ƥàĝē ŷōũ'ŕē śēēķĩńĝ ĩś ēĩţĥēŕ ĝōńē ōŕ ńēvēŕ ŵàś. Ĺēţ'ś ĝēţ ŷōũ ƀàćķ ōń ţŕàćķ\"],\"uWikAA\":[\"Ţĥē vàĺũēś ōƒ ţĥĩś ƒĩēĺď\"],\"+69KDk\":[\"Ţĥē vàĺũēś ōƒ ţĥĩś ƒĩēĺď ḿũśţ ƀē ũńĩǫũē\"],\"ynfkhb\":[\"Ţĥēŕē ŵàś àń ēŕŕōŕ ŵĥĩĺē ũƥďàţĩńĝ ƥàśśŵōŕď.\"],\"PmtLRf\":[\"Ţĥēŕē ŵàś àń ĩśśũē\"],\"hqCwGc\":[\"Ţĥĩś àćţĩōń ćàńńōţ ƀē ũńďōńē. Ţĥĩś ŵĩĺĺ ƥēŕḿàńēńţĺŷ ďēĺēţē ţĥĩś ũśēŕ àńď ŕēḿōvē ţĥēḿ ƒŕōḿ àĺĺ ţĥēĩŕ àśśĩĝńḿēńţś.\"],\"gWGuHC\":[\"Ţĥĩś àćţĩōń ćàńńōţ ƀē ũńďōńē. Ţĥĩś ŵĩĺĺ ƥēŕḿàńēńţĺŷ ďēĺēţē ŷōũŕ ēńţĩŕē ŵōŕķśƥàćē. <0/> Ƥĺēàśē ţŷƥē ĩń ŷōũŕ ēḿàĩĺ ţō ćōńƒĩŕḿ.\"],\"n9nSNJ\":[\"Ţĩḿē ƒōŕḿàţ\"],\"aqMzDX\":[\"ţō ḿōńţĥĺŷ\"],\"WXXiXO\":[\"ţō ŷēàŕĺŷ\"],\"PiUt3N\":[\"Ţŕĩĝĝēŕ Ţŷƥē\"],\"IQ5pAL\":[\"Ţŕĩĝĝēŕ ţŷƥē śĥōũĺď ƀē Ḿàńũàĺ - ŵĥēń ńō ŕēćōŕď(ś) àŕē śēĺēćţēď\"],\"+zy2Nq\":[\"Ţŷƥē\"],\"U83IeL\":[\"Ţŷƥē àńŷţĥĩńĝ\"],\"wSXm5S\":[\"Ũńĩǫũē\"],\"GQCXQS\":[\"Ũńĺĩḿĩţēď ćōńţàćţś\"],\"ONWvwQ\":[\"Ũƥĺōàď\"],\"IagCbF\":[\"ŨŔĹ\"],\"6dMpmz\":[\"Ũśē àś ďŕàƒţ\"],\"oTTQsc\":[\"Ũśē ĺēţţēŕ, ńũḿƀēŕ àńď ďàśĥ ōńĺŷ. Śţàŕţ àńď ƒĩńĩśĥ ŵĩţĥ à ĺēţţēŕ ōŕ à ńũḿƀēŕ\"],\"c6uZUV\":[\"Ũśē ōũŕ ÀƤĨ ōŕ àďď ŷōũŕ ƒĩŕśţ \",[\"objectLabel\"],\" ḿàńũàĺĺŷ\"],\"7PzzBU\":[\"Ũśēŕ\"],\"IjyOjp\":[\"Ũśēŕ ĩś ńōţ ĺōĝĝēď ĩń\"],\"fXVIZq\":[\"Vàĺũēś\"],\"KANz0G\":[\"Vĩēŵ ƀĩĺĺĩńĝ ďēţàĩĺś\"],\"6n7jtr\":[\"Vĩśũàĺĩźē\"],\"id6ein\":[\"Ŵē śũƥƥōŕţ ŷōũŕ śǫũàŕē ƤŃĜś, ĵƤĒĜś àńď ĜĨƑś ũńďēŕ 10Ḿß\"],\"ZS7vYp\":[\"Ŵē ŵĩĺĺ śēńď ƤŌŚŢ ŕēǫũēśţś ţō ţĥĩś ēńďƥōĩńţ ƒōŕ ēvēŕŷ ńēŵ ēvēńţ\"],\"TRDppN\":[\"Ŵēƀĥōōķ\"],\"v1kQyJ\":[\"Ŵēƀĥōōķś\"],\"Jt1WNL\":[\"Ŵēĺćōḿē ţō\"],\"ke0EDP\":[\"Ŵēĺćōḿē ţō \",[\"workspaceName\"]],\"C51ilI\":[\"Ŵĥēń ţĥē ÀƤĨ ķēŷ ŵĩĺĺ ēxƥĩŕē.\"],\"leUubq\":[\"Ŵĥēń ţĥē ķēŷ ŵĩĺĺ ƀē ďĩśàƀĺēď\"],\"wvyffT\":[\"Ŵōŕķƒĺōŵ ćàńńōţ ƀē ţēśţēď\"],\"pmUArF\":[\"Ŵōŕķśƥàćē\"],\"VicISP\":[\"Ŵōŕķśƥàćē Ďēĺēţĩōń\"],\"Q9pNST\":[\"Ŵŕĩţē à ďēśćŕĩƥţĩōń\"],\"3d1wCB\":[\"ŷēś\"],\"zSkMV0\":[\"Ŷōũ ŵĩĺĺ ƀē ćĥàŕĝēď ĩḿḿēďĩàţēĺŷ ƒōŕ ţĥē ƒũĺĺ ŷēàŕ.\"],\"XVnj6K\":[\"Ŷōũŕ ćŕēďĩţ ƀàĺàńćē ŵĩĺĺ ƀē ũśēď ţō ƥàŷ ţĥē ḿōńţĥĺŷ ƀĩĺĺś.\"],\"9ivpwk\":[\"Ŷōũŕ ńàḿē àś ĩţ ŵĩĺĺ ƀē ďĩśƥĺàŷēď\"],\"YQK8fJ\":[\"Ŷōũŕ Ŵōŕķśƥàćē\"],\"RhNbPE\":[\"Ŷōũŕ ŵōŕķśƥàćē ŵĩĺĺ ƀē ďĩśàƀĺēď\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" ōƒ \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" ÀƤĨ Ķēŷ\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 ŵōŕķƒĺōŵ ńōďē ēxēćũţĩōńś\"],\"4EdXYs\":[\"12ĥ (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Ćōńƒĩĝũŕē ƒĩēĺď\"],\"QsMprd\":[\"24ĥ (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"À śĥàŕēď ēńvĩŕōńḿēńţ ŵĥēŕē ŷōũ ŵĩĺĺ ƀē àƀĺē ţō ḿàńàĝē ŷōũŕ ćũśţōḿēŕ ŕēĺàţĩōńś ŵĩţĥ ŷōũŕ ţēàḿ.\"],\"ssjjFt\":[\"Àƀōŕţ\"],\"uyJsf6\":[\"Àƀōũţ\"],\"AeXO77\":[\"Àććōũńţ\"],\"nD0Y+a\":[\"Àććōũńţ Ďēĺēţĩōń\"],\"bPwFdf\":[\"Àććōũńţś\"],\"FQBaXG\":[\"Àćţĩvàţē\"],\"tu8A/k\":[\"Àćţĩvàţē Ŵōŕķƒĺōŵ\"],\"F6pfE9\":[\"Àćţĩvē\"],\"Mue4oc\":[\"Àćţĩvē ÀƤĨ ķēŷś ćŕēàţēď ƀŷ ŷōũ ōŕ ŷōũŕ ţēàḿ.\"],\"m16xKo\":[\"Àďď\"],\"DpV70M\":[\"Àďď Ƒĩēĺď\"],\"dEO3Zx\":[\"Àďď ōƀĴēćţ\"],\"sgXUv+\":[\"Àďď ŚŚŌ Ĩďēńţĩţŷ Ƥŕōvĩďēŕ\"],\"5+ttxv\":[\"Àďď ţō ƀĺōćķĺĩśţ\"],\"pBsoKL\":[\"Àďď ţō ƒàvōŕĩţēś\"],\"m2qDV8\":[\"Àďď ŷōũŕ ƒĩŕśţ \",[\"objectLabel\"]],\"vLO+NG\":[\"Àďďēď \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Àĺĺ\"],\"3saA7W\":[\"Àĺĺ (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Àĺĺ ŕōĺēś\"],\"GMx1K0\":[\"Àĺĺōŵ ĺōĝĩńś ţĥŕōũĝĥ Ĝōōĝĺē'ś śĩńĝĺē śĩĝń-ōń ƒũńćţĩōńàĺĩţŷ.\"],\"dea+zy\":[\"Àĺĺōŵ ĺōĝĩńś ţĥŕōũĝĥ Ḿĩćŕōśōƒţ'ś śĩńĝĺē śĩĝń-ōń ƒũńćţĩōńàĺĩţŷ.\"],\"wMg43c\":[\"Àĺĺōŵ ţĥē ĩńvĩţàţĩōń ōƒ ńēŵ ũśēŕś ƀŷ śĥàŕĩńĝ àń ĩńvĩţē ĺĩńķ.\"],\"vHeVg5\":[\"Àĺĺōŵ ũśēŕś ţō śĩĝń ĩń ŵĩţĥ àń ēḿàĩĺ àńď ƥàśśŵōŕď.\"],\"LG4K0m\":[\"Àń ēŕŕōŕ ōććũŕŕēď ŵĥĩĺē ũƥďàţĩńĝ ƥàśśŵōŕď\"],\"mJ6m4C\":[\"Àń ōƥţĩōńàĺ ďēśćŕĩƥţĩōń\"],\"HZFm5R\":[\"àńď\"],\"0RqpZr\":[\"ÀƤĨ & Ŵēƀĥōōķś\"],\"yRnk5W\":[\"ÀƤĨ Ķēŷ\"],\"5h8ooz\":[\"ÀƤĨ ķēŷś\"],\"kAtj+q\":[\"ÀƤĨ Ńàḿē\"],\"aAIQg2\":[\"Àƥƥēàŕàńćē\"],\"3iX0kh\":[\"Àŕē ŷōũ śũŕē ţĥàţ ŷōũ ŵàńţ ţō ćĥàńĝē ŷōũŕ ƀĩĺĺĩńĝ ĩńţēŕvàĺ?\"],\"nYD/Cq\":[\"Àśćēńďĩńĝ\"],\"rfYmIr\":[\"Àśśĩĝń ŕōĺēś ţō śƥēćĩƒŷ ēàćĥ ḿēḿƀēŕ'ś àććēśś ƥēŕḿĩśśĩōńś\"],\"OItM/o\":[\"Àśśĩĝńēď ḿēḿƀēŕś\"],\"lxQ+5m\":[\"Àśśĩĝńēď ţō\"],\"0dtKl9\":[\"Àśśĩĝńḿēńţ\"],\"H8QGSx\":[\"Àţ ĺēàśţ 8 ćĥàŕàćţēŕś ĺōńĝ.\"],\"Y7Dx6e\":[\"Àţ ĺēàśţ ōńē àũţĥēńţĩćàţĩōń ḿēţĥōď ḿũśţ ƀē ēńàƀĺēď\"],\"P8fBlG\":[\"Àũţĥēńţĩćàţĩōń\"],\"yIVrHZ\":[\"Àũţĥōŕĩźē\"],\"3uQmjD\":[\"Àvēŕàĝē\"],\"Dht9W3\":[\"ßàćķ ţō ćōńţēńţ\"],\"R+w/Va\":[\"ßĩĺĺĩńĝ\"],\"K1172m\":[\"ßĺōćķĺĩśţ\"],\"2yl5lQ\":[\"ßōōķ à Ćàĺĺ\"],\"8Pfllj\":[\"ßŷ ũśĩńĝ Ţŵēńţŷ, ŷōũ àĝŕēē ţō ţĥē\"],\"PmmvzS\":[\"Ćàĺćũĺàţē\"],\"AjVXBS\":[\"Ćàĺēńďàŕ\"],\"EUpfsd\":[\"Ćàĺēńďàŕś\"],\"dEgA5A\":[\"Ćàńćēĺ\"],\"0TllC8\":[\"Ćàńćēĺ àńŷţĩḿē\"],\"rRK/Lf\":[\"Ćàńćēĺ Ƥĺàń\"],\"N6gPiD\":[\"Ćàńćēĺ ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"OfzMnb\":[\"Ćĥàńĝē \",[\"to\"]],\"VhMDMg\":[\"Ćĥàńĝē Ƥàśśŵōŕď\"],\"SviKkE\":[\"Ćĥĩńēśē — Śĩḿƥĺĩƒĩēď\"],\"dzb4Ep\":[\"Ćĥĩńēśē — Ţŕàďĩţĩōńàĺ\"],\"JEFFOR\":[\"Ćĥōōśē àń ōƀĴēćţ\"],\"KT6rEB\":[\"Ćĥōōśē ŷōũŕ ƥŕōvĩďēŕ\"],\"9qP96p\":[\"Ćĥōōśē ŷōũŕ Ţŕĩàĺ\"],\"yz7wBu\":[\"Ćĺōśē\"],\"+zUMwJ\":[\"Ćōńƒĩĝũŕē àń ŚŚŌ ćōńńēćţĩōń\"],\"QTNsSm\":[\"Ćōńƒĩĝũŕē àńď ćũśţōḿĩźē ŷōũŕ ćàĺēńďàŕ ƥŕēƒēŕēńćēś.\"],\"aGwm+D\":[\"Ćōńƒĩĝũŕē ĥōŵ ďàţēś àŕē ďĩśƥĺàŷēď àćŕōśś ţĥē àƥƥ\"],\"Bh4GBD\":[\"Ćōńƒĩĝũŕē ŷōũŕ ēḿàĩĺś àńď ćàĺēńďàŕ śēţţĩńĝś.\"],\"D8ATlr\":[\"Ćōńńēćţ à ńēŵ àććōũńţ ţō ŷōũŕ ŵōŕķśƥàćē\"],\"Zgi9Fd\":[\"Ćōńńēćţ ŵĩţĥ Ĝōōĝĺē\"],\"IOfqM8\":[\"Ćōńńēćţ ŵĩţĥ Ḿĩćŕōśōƒţ\"],\"9TzudL\":[\"Ćōńńēćţēď àććōũńţś\"],\"M73whl\":[\"Ćōńţēxţ\"],\"xGVfLh\":[\"Ćōńţĩńũē\"],\"RvVi9c\":[\"Ćōńţĩńũē ŵĩţĥ Ēḿàĩĺ\"],\"oZyG4C\":[\"Ćōńţĩńũē ŵĩţĥ Ĝōōĝĺē\"],\"ztoybH\":[\"Ćōńţĩńũē ŵĩţĥ Ḿĩćŕōśōƒţ\"],\"CcGOj+\":[\"Ćōƥĩĺōţ\"],\"7eVkEH\":[\"Ćōƥŷ ĩńvĩţàţĩōń ĺĩńķ\"],\"Ej5euX\":[\"Ćōƥŷ ţĥĩś ķēŷ àś ĩţ ŵĩĺĺ ńōţ ƀē vĩśĩƀĺē àĝàĩń\"],\"wBMjJ2\":[\"Ćōũńţ\"],\"EkZfen\":[\"Ćōũńţ àĺĺ\"],\"vQJINq\":[\"Ćōũńţ ēḿƥţŷ\"],\"DzRsDJ\":[\"Ćōũńţ ńōţ ēḿƥţŷ\"],\"9FZBbf\":[\"Ćōũńţ ũńĩǫũē vàĺũēś\"],\"zNoOC2\":[\"Ćŕēàţē à ŵōŕķƒĺōŵ àńď ŕēţũŕń ĥēŕē ţō vĩēŵ ĩţś vēŕśĩōńś\"],\"uXGLuq\":[\"Ćŕēàţē ÀƤĨ ķēŷ\"],\"d0DCww\":[\"Ćŕēàţē ńēŵ ŕēćōŕď\"],\"gSyzEV\":[\"Ćŕēàţē ƥŕōƒĩĺē\"],\"RoyYUE\":[\"Ćŕēàţē Ŕōĺē\"],\"dkAPxi\":[\"Ćŕēàţē Ŵēƀĥōōķ\"],\"9chYz/\":[\"Ćŕēàţē ŷōũŕ ŵōŕķśƥàćē\"],\"8skTDV\":[\"Ćũśţōḿ ōƀĴēćţś\"],\"qt+EaC\":[\"Ćũśţōḿĩśē ţĥē ƒĩēĺďś àvàĩĺàƀĺē ĩń ţĥē \",[\"objectLabelSingular\"],\" vĩēŵś.\"],\"CMhr4u\":[\"Ćũśţōḿĩźē Ďōḿàĩń\"],\"bCJa9l\":[\"Ćũśţōḿĩźē ŷōũŕ ŵōŕķśƥàćē śēćũŕĩţŷ\"],\"Zz6Cxn\":[\"Ďàńĝēŕ źōńē\"],\"5cNMFz\":[\"Ďàţà ḿōďēĺ\"],\"r+cVRP\":[\"Ďàţà ţŷƥē\"],\"mYGY3B\":[\"Ďàţē\"],\"Ud9zHv\":[\"Ďàţē àńď ţĩḿē\"],\"5y3O+A\":[\"Ďēàćţĩvàţē\"],\"qk4i22\":[\"Ďēàćţĩvàţē \\\"Śŷńćĥŕōńĩźē ŌƀĴēćţś Ĺàƀēĺś àńď ÀƤĨ Ńàḿēś\\\" ţō śēţ à ćũśţōḿ ÀƤĨ ńàḿē\"],\"gexAq8\":[\"Ďēàćţĩvàţē ţĥĩś ƒĩēĺď\"],\"4tpC8V\":[\"Ďēàćţĩvàţē Ŵōŕķƒĺōŵ\"],\"Y2ImVJ\":[\"Ďēƒĩńē ţĥē ńàḿē àńď ďēśćŕĩƥţĩōń ōƒ ŷōũŕ ōƀĴēćţ\"],\"cnGeoo\":[\"Ďēĺēţē\"],\"ZDGm40\":[\"Ďēĺēţē àććōũńţ\"],\"gAz0S5\":[\"Ďēĺēţē àććōũńţ àńď àĺĺ ţĥē àśśōćĩàţēď ďàţà\"],\"hGfWDm\":[\"Ďēĺēţē ÀƤĨ ķēŷ\"],\"4dpwsE\":[\"Ďēĺēţē ŕēćōŕď\"],\"kf0A63\":[\"Ďēĺēţē ŕēćōŕďś\"],\"T6S2Ns\":[\"Ďēĺēţē ţĥĩś ĩńţēĝŕàţĩōń\"],\"snMaH4\":[\"Ďēĺēţē ŵēƀĥōōķ\"],\"UA2IpC\":[\"Ďēĺēţē ŵōŕķƒĺōŵ\"],\"ABwG9x\":[\"Ďēĺēţē ŵōŕķƒĺōŵś\"],\"kYu0eF\":[\"Ďēĺēţē ŵōŕķśƥàćē\"],\"mk2Ygs\":[\"Ďēĺēţē ŷōũŕ ŵĥōĺē ŵōŕķśƥàćē\"],\"Cko536\":[\"Ďēśćēńďĩńĝ\"],\"Nu4oKW\":[\"Ďēśćŕĩƥţĩōń\"],\"2xxBws\":[\"Ďēśţŕōŷ\"],\"n+SX4g\":[\"Ďēvēĺōƥēŕś\"],\"zAg2B9\":[\"Ďĩśćàŕď Ďŕàƒţ\"],\"i66xz9\":[\"Ďĩśƥĺàŷ àś ŕēĺàţĩvē ďàţē\"],\"EoKe5U\":[\"Ďōḿàĩń\"],\"QVVmxi\":[\"Ē.ĝ. ƀàćķōƒƒĩćē ĩńţēĝŕàţĩōń\"],\"tOkc8o\":[\"Ēàŕĺĩēśţ\"],\"JTbQuO\":[\"Ēàŕĺĩēśţ ďàţē\"],\"v+uKyy\":[\"Ēďĩţ ƀĩĺĺĩńĝ ĩńţēŕvàĺ\"],\"h2KoTu\":[\"Ēďĩţ ƥàŷḿēńţ ḿēţĥōď, śēē ŷōũŕ ĩńvōĩćēś àńď ḿōŕē\"],\"6o1M/Q\":[\"Ēďĩţ ŷōũŕ śũƀďōḿàĩń ńàḿē ōŕ śēţ à ćũśţōḿ ďōḿàĩń.\"],\"O3oNi5\":[\"Ēḿàĩĺ\"],\"lfQsvW\":[\"Ēḿàĩĺ ĩńţēĝŕàţĩōń\"],\"QT/Wo7\":[\"Ēḿàĩĺ ōŕ ďōḿàĩń ĩś àĺŕēàďŷ ĩń ƀĺōćķĺĩśţ\"],\"BXEcos\":[\"Ēḿàĩĺś\"],\"eXoH4Q\":[\"ēḿƥĺōŷēēś\"],\"gqv5ZL\":[\"Ēḿƥĺōŷēēś\"],\"N2S1rs\":[\"Ēḿƥţŷ\"],\"T3juzf\":[\"Ēńďƥōĩńţ ŨŔĹ\"],\"lYGfRP\":[\"Ēńĝĺĩśĥ\"],\"/bfFKe\":[\"ĒńĴōŷ à \",[\"withCreditCardTrialPeriodDuration\"],\"-ďàŷś ƒŕēē ţŕĩàĺ\"],\"GpB8YV\":[\"Ēńţēŕƥŕĩśē\"],\"c3qGJX\":[\"Ēŕŕōŕ ďēĺēţĩńĝ àƥĩ ķēŷ: \",[\"err\"]],\"bj7nh3\":[\"Ēŕŕōŕ ŕēĝēńēŕàţĩńĝ àƥĩ ķēŷ: \",[\"err\"]],\"VSQxWH\":[\"Ēŕŕōŕ ŵĥĩĺē śŵĩţćĥĩńĝ śũƀśćŕĩƥţĩōń \",[\"to\"],\".\"],\"JLxMta\":[\"Ēśţàƀĺĩśĥ Ŵēƀĥōōķ ēńďƥōĩńţś ƒōŕ ńōţĩƒĩćàţĩōńś ōń àśŷńćĥŕōńōũś ēvēńţś.\"],\"cIgBjB\":[\"Ēxćĺũďē ţĥē ƒōĺĺōŵĩńĝ ƥēōƥĺē àńď ďōḿàĩńś ƒŕōḿ ḿŷ ēḿàĩĺ śŷńć\"],\"fV7V51\":[\"Ēxĩśţĩńĝ ōƀĴēćţś\"],\"IZ4o2e\":[\"Ēxĩţ Śēţţĩńĝś\"],\"tXGQvS\":[\"Ēxƥēćţēď śēĺēćţēď ńōďē ţō ƀē à ćŕēàţē śţēƥ ńōďē.\"],\"bKBhgb\":[\"Ēxƥēŕĩēńćē\"],\"LxRNPw\":[\"Ēxƥĩŕàţĩōń\"],\"SkXfL0\":[\"Ēxƥĩŕàţĩōń Ďàţē\"],\"i9qiyR\":[\"Ēxƥĩŕēś ĩń\"],\"GS+Mus\":[\"Ēxƥōŕţ\"],\"ep2rbf\":[\"Ēxƥōŕţ ŕēćōŕďś\"],\"q46CjD\":[\"Ēxƥōŕţ ţō ƤĎƑ\"],\"DaGxE0\":[\"Ēxƥōŕţ vĩēŵ\"],\"eWCNmu\":[\"Ēxƥōŕţ Ŵōŕķƒĺōŵś\"],\"X9kySA\":[\"Ƒàvōŕĩţēś\"],\"zXgopL\":[\"Ƒĩēĺď ţŷƥē\"],\"vF68cg\":[\"Ƒĩēĺďś\"],\"3w/aqw\":[\"Ƒĩēĺďś Ćōũńţ\"],\"o7J4JM\":[\"Ƒĩĺţēŕ\"],\"cSev+j\":[\"Ƒĩĺţēŕś\"],\"kODvZJ\":[\"Ƒĩŕśţ Ńàḿē\"],\"glx6on\":[\"Ƒōŕĝōţ ŷōũŕ ƥàśśŵōŕď?\"],\"nLC6tu\":[\"Ƒŕēńćĥ\"],\"aTieE0\":[\"ƒŕōḿ ḿōńţĥĺŷ ţō ŷēàŕĺŷ\"],\"K04lE5\":[\"ƒŕōḿ ŷēàŕĺŷ ţō ḿōńţĥĺŷ\"],\"scmRyR\":[\"Ƒũĺĺ àććēśś\"],\"xANKBj\":[\"Ƒũńćţĩōńś\"],\"Weq9zb\":[\"Ĝēńēŕàĺ\"],\"DDcvSo\":[\"Ĝēŕḿàń\"],\"NXEW3h\":[\"Ĝēţ ţĥē ḿōśţ ōũţ ōƒ ŷōũŕ ŵōŕķśƥàćē ƀŷ ĩńvĩţĩńĝ ŷōũŕ ţēàḿ.\"],\"zSGbaR\":[\"Ĝēţ ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"2GT3Hf\":[\"Ĝĺōƀàĺ\"],\"hWp1MY\":[\"Ĝŕàńţ Ţŵēńţŷ śũƥƥōŕţ ţēḿƥōŕàŕŷ àććēśś ţō ŷōũŕ ŵōŕķśƥàćē śō ŵē ćàń ţŕōũƀĺēśĥōōţ ƥŕōƀĺēḿś ōŕ ŕēćōvēŕ ćōńţēńţ ōń ŷōũŕ ƀēĥàĺƒ. Ŷōũ ćàń ŕēvōķē àććēśś àţ àńŷ ţĩḿē.\"],\"vLyv1R\":[\"Ĥĩďē\"],\"B06Bgk\":[\"Ĥōŵ ŷōũ'ĺĺ ƀē ĩďēńţĩƒĩēď ōń ţĥē àƥƥ.\"],\"XTWO+W\":[\"Ĩćōń àńď Ńàḿē\"],\"sJGljQ\":[\"Ĩďēńţĩƒĩēŕ\"],\"j843N3\":[\"Ĩƒ ŷōũ’vē ĺōśţ ţĥĩś ķēŷ, ŷōũ ćàń ŕēĝēńēŕàţē ĩţ, ƀũţ ƀē àŵàŕē ţĥàţ àńŷ śćŕĩƥţ ũśĩńĝ ţĥĩś ķēŷ ŵĩĺĺ ńēēď ţō ƀē ũƥďàţēď. Ƥĺēàśē ţŷƥē\\\"\",[\"confirmationValue\"],\"\\\" ţō ćōńƒĩŕḿ.\"],\"NoNwIX\":[\"Ĩńàćţĩvē\"],\"pZ/USH\":[\"Ĩńďēxēś\"],\"JE2tjr\":[\"Ĩńƥũţ ḿũśţ ƀē ĩń ćàḿēĺ ćàśē àńď ćàńńōţ śţàŕţ ŵĩţĥ à ńũḿƀēŕ\"],\"AwUsnG\":[\"Ĩńśţàńćēś\"],\"nbfdhU\":[\"Ĩńţēĝŕàţĩōńś\"],\"NtFk/Z\":[\"Ĩńvàĺĩď àũţĥ ƥŕōvĩďēŕ\"],\"B2Tpo0\":[\"Ĩńvàĺĩď ēḿàĩĺ\"],\"/m52AE\":[\"Ĩńvàĺĩď ēḿàĩĺ ōŕ ďōḿàĩń\"],\"QdoUFL\":[\"Ĩńvàĺĩď ƒōŕḿ vàĺũēś\"],\"0M8+El\":[\"Ĩńvĩţē ƀŷ ēḿàĩĺ\"],\"PWIq/W\":[\"Ĩńvĩţē ƀŷ ĺĩńķ\"],\"3athPG\":[\"Ĩńvĩţē ƀŷ Ĺĩńķ\"],\"5IfmKA\":[\"Ĩńvĩţē ĺĩńķ śēńţ ţō ēḿàĩĺ àďďŕēśśēś\"],\"d+Y+rP\":[\"Ĩńvĩţē ŷōũŕ ţēàḿ\"],\"Lj7sBL\":[\"Ĩţàĺĩàń\"],\"dFtidv\":[\"ĵàƥàńēśē\"],\"h6S9Yz\":[\"Ķōŕēàń\"],\"zrpwCd\":[\"Ĺàƀ\"],\"vXIe7J\":[\"Ĺàńĝũàĝē\"],\"UXBCwc\":[\"Ĺàśţ Ńàḿē\"],\"wL3cK8\":[\"Ĺàţēśţ\"],\"Kcjbmz\":[\"Ĺàţēśţ ďàţē\"],\"pQjjYo\":[\"Ĺĩńķ ćōƥĩēď ţō ćĺĩƥƀōàŕď\"],\"FgAxTj\":[\"Ĺōĝ ōũţ\"],\"nOhz3x\":[\"Ĺōĝōũţ\"],\"T6YjCk\":[\"Ḿàńàĝē Ḿēḿƀēŕś\"],\"4cjU2u\":[\"Ḿàńàĝē ţĥē ḿēḿƀēŕś ōƒ ŷōũŕ śƥàćē ĥēŕē\"],\"FyFNsd\":[\"Ḿàńàĝē ŷōũŕ ĩńţēŕńēţ àććōũńţś.\"],\"36kYu0\":[\"Ḿàńàĝē ŷōũŕ śũƀśćŕĩƥţĩōń\"],\"3Sdni6\":[\"Ḿàŕķ àś ďōńē\"],\"CK1KXz\":[\"Ḿàx\"],\"wlQNTg\":[\"Ḿēḿƀēŕś\"],\"eTUF28\":[\"Ḿĩń\"],\"3Siwmw\":[\"Ḿōŕē ōƥţĩōńś\"],\"iSLA/r\":[\"Ḿōvē ĺēƒţ\"],\"Ubl2by\":[\"Ḿōvē ŕĩĝĥţ\"],\"6YtxFj\":[\"Ńàḿē\"],\"XSwyCU\":[\"Ńàḿē ćàń ńōţ ƀē ēḿƥţŷ\"],\"z+6jaZ\":[\"Ńàḿē ōƒ ŷōũŕ ÀƤĨ ķēŷ\"],\"J7w8lI\":[\"Ńàḿē ōƒ ŷōũŕ ŵōŕķśƥàćē\"],\"2T8KCk\":[\"Ńàvĩĝàţē ţō ńēxţ ŕēćōŕď\"],\"veSA19\":[\"Ńàvĩĝàţē ţō ńēxţ vēŕśĩōń\"],\"ZTEho+\":[\"Ńàvĩĝàţē ţō ńēxţ ŵōŕķƒĺōŵ\"],\"2tw9bo\":[\"Ńàvĩĝàţē ţō ƥŕēvĩōũś ŕēćōŕď\"],\"I+Pm5V\":[\"Ńàvĩĝàţē ţō ƥŕēvĩōũś vēŕśĩōń\"],\"QVUN3K\":[\"Ńàvĩĝàţē ţō ƥŕēvĩōũś ŵōŕķƒĺōŵ\"],\"isRobC\":[\"Ńēŵ\"],\"Kcr9Fr\":[\"Ńēŵ àććōũńţ\"],\"o8MyXb\":[\"Ńēŵ ķēŷ\"],\"j313SZ\":[\"Ńēŵ Ķēŷ\"],\"hFxdey\":[\"Ńēŵ ŌƀĴēćţ\"],\"7vhWI8\":[\"Ńēŵ Ƥàśśŵōŕď\"],\"BcCzLv\":[\"Ńēŵ ŕēćōŕď\"],\"2lmOC5\":[\"Ńēŵ Ŕōĺē\"],\"U1DAok\":[\"Ńēŵ Ŵēƀĥōōķ\"],\"pwenQu\":[\"Ńō ćōńńēćţēď àććōũńţ\"],\"0uWxPM\":[\"Ńō ŵōŕķƒĺōŵ ŕũńś ŷēţ\"],\"AQCvCC\":[\"Ńō ŵōŕķƒĺōŵ vēŕśĩōńś ŷēţ\"],\"4wUkDk\":[\"Ńōţ ēḿƥţŷ\"],\"W0i24j\":[\"ŌƀĴēćţ\"],\"B3toQF\":[\"ŌƀĴēćţś\"],\"KNz3EF\":[\"Ōƒƒ ţĥē ƀēàţēń ƥàţĥ\"],\"OV5wZZ\":[\"Ōƥēńēď\"],\"0zpgxV\":[\"Ōƥţĩōńś\"],\"BzEFor\":[\"ōŕ\"],\"/IX/7x\":[\"Ōţĥēŕ\"],\"boJlGf\":[\"Ƥàĝē Ńōţ Ƒōũńď\"],\"8ZsakT\":[\"Ƥàśśŵōŕď\"],\"BxQ79w\":[\"Ƥàśśŵōŕď ĥàś ƀēēń ũƥďàţēď\"],\"mi6Rel\":[\"Ƥàśśŵōŕď ŕēśēţ ĺĩńķ ĥàś ƀēēń śēńţ ţō ţĥē ēḿàĩĺ\"],\"SrVzRe\":[\"Ƥēŕćēńţ\"],\"yIK1GU\":[\"Ƥēŕćēńţ ēḿƥţŷ\"],\"PWLd4c\":[\"Ƥēŕćēńţ ńōţ ēḿƥţŷ\"],\"Bv3y5w\":[\"Ƥēŕḿàńēńţĺŷ ďēśţŕōŷ ŕēćōŕď\"],\"xjWlSJ\":[\"Ƥēŕḿàńēńţĺŷ ďēśţŕōŷ ŕēćōŕďś\"],\"uKWXhB\":[\"Ƥēŕḿàńēńţĺŷ ďēśţŕōŷ ŵōŕķƒĺōŵś\"],\"9cDpsw\":[\"Ƥēŕḿĩśśĩōńś\"],\"N0+GsR\":[\"Ƥĩćţũŕē\"],\"jEw0Mr\":[\"Ƥĺēàśē ēńţēŕ à vàĺĩď ŨŔĹ\"],\"6nsIo3\":[\"Ƥĺēàśē ţŷƥē \\\"\",[\"confirmationValue\"],\"\\\" ţō ćōńƒĩŕḿ ŷōũ ŵàńţ ţō ďēĺēţē ţĥĩś ÀƤĨ Ķēŷ. ßē àŵàŕē ţĥàţ àńŷ śćŕĩƥţ ũśĩńĝ ţĥĩś ķēŷ ŵĩĺĺ śţōƥ ŵōŕķĩńĝ.\"],\"mFZTXr\":[\"Ƥĺēàśē ţŷƥē \",[\"confirmationText\"],\" ţō ćōńƒĩŕḿ ŷōũ ŵàńţ ţō ďēĺēţē ţĥĩś ŵēƀĥōōķ.\"],\"MOERNx\":[\"Ƥōŕţũĝũēśē\"],\"0nsqwk\":[\"Ƥōŕţũĝũēśē — ßŕàźĩĺ\"],\"xtXHeo\":[\"Ƥōŕţũĝũēśē — Ƥōŕţũĝàĺ\"],\"R7+D0/\":[\"Ƥōŕţũĝũēśē (ßŕàźĩĺ)\"],\"512Uma\":[\"Ƥōŕţũĝũēśē (Ƥōŕţũĝàĺ)\"],\"rdUucN\":[\"Ƥŕēvĩēŵ\"],\"LcET2C\":[\"Ƥŕĩvàćŷ Ƥōĺĩćŷ\"],\"vERlcd\":[\"Ƥŕōƒĩĺē\"],\"YJgRqq\":[\"Ƥśēũďō-Ēńĝĺĩśĥ\"],\"ibPuCP\":[\"Ŕēàď ďōćũḿēńţàţĩōń\"],\"v3xM25\":[\"Ŕēćēĩvē àń ēḿàĩĺ ćōńţàĩńĩńĝ ƥàśśŵōŕď ũƥďàţē ĺĩńķ\"],\"dSCufP\":[\"Ŕēćōŕď Śēĺēćţĩōń\"],\"vpZcGd\":[\"Ŕēĝēńēŕàţē àń ÀƤĨ ķēŷ\"],\"Mwqo5m\":[\"Ŕēĝēńēŕàţē ķēŷ\"],\"D+Mv78\":[\"Ŕēĝēńēŕàţē Ķēŷ\"],\"5icoS1\":[\"Ŕēĺēàśēś\"],\"t/YqKh\":[\"Ŕēḿōvē\"],\"T/pF0Z\":[\"Ŕēḿōvē ƒŕōḿ ƒàvōŕĩţēś\"],\"KbS2K9\":[\"Ŕēśēţ Ƥàśśŵōŕď\"],\"1IWc1n\":[\"Ŕēśēţ ţō\"],\"kx0s+n\":[\"Ŕēśũĺţś\"],\"5dJK4M\":[\"Ŕōĺēś\"],\"UX0N2y\":[\"Ŕũń à ŵōŕķƒĺōŵ àńď ŕēţũŕń ĥēŕē ţō vĩēŵ ĩţś ēxēćũţĩōńś\"],\"A1taO8\":[\"Śēàŕćĥ\"],\"8NBMeZ\":[\"Śēàŕćĥ '\",[\"commandMenuSearch\"],\"' ŵĩţĥ...\"],\"l1/uy2\":[\"Śēàŕćĥ à ƒĩēĺď...\"],\"k7kp5/\":[\"Śēàŕćĥ àń ĩńďēx...\"],\"7taA9j\":[\"Śēàŕćĥ ƒĩēĺďś\"],\"ofuw3g\":[\"Śēàŕćĥ ƒōŕ àń ōƀĴēćţ...\"],\"IMeaSJ\":[\"Śēàŕćĥ ŕēćōŕďś\"],\"a3LDKx\":[\"Śēćũŕĩţŷ\"],\"QREcJS\":[\"Śēē àćţĩvē vēŕśĩōń\"],\"OpPn5Z\":[\"Śēē ŕũńś\"],\"EtyY4+\":[\"Śēē vēŕśĩōńś\"],\"lYhPN0\":[\"Śēē vēŕśĩōńś ĥĩśţōŕŷ\"],\"xraglu\":[\"Śēĺēćţ ţĥē ēvēńţś ŷōũ ŵĩśĥ ţō śēńď ţō ţĥĩś ēńďƥōĩńţ\"],\"AXTJAW\":[\"Śēĺēćţ ŷōũŕ ƥŕēƒēŕŕēď ĺàńĝũàĝē\"],\"mjK8F3\":[\"Śēńď àń ĩńvĩţē ēḿàĩĺ ţō ŷōũŕ ţēàḿ\"],\"yy5k7a\":[\"Śēŕvēŕ Àďḿĩń Ƥàńēĺ\"],\"V7fgiB\":[\"Śēţ ēḿàĩĺ vĩśĩƀĩĺĩţŷ, ḿàńàĝē ŷōũŕ ƀĺōćķĺĩśţ àńď ḿōŕē.\"],\"cx14rp\":[\"Śēţ ţĥē ńàḿē ōƒ ŷōũŕ ďōḿàĩń\"],\"tn41zE\":[\"Śēţ ţĥē ńàḿē ōƒ ŷōũŕ śũƀďōḿàĩń\"],\"Tz0i8g\":[\"Śēţţĩńĝś\"],\"Vy9kmk\":[\"Śĥàŕē ţĥĩś ĺĩńķ ţō ĩńvĩţē ũśēŕś ţō Ĵōĩń ŷōũŕ ŵōŕķśƥàćē\"],\"gWk8gY\":[\"Śĥōũĺď ćĥàńĝĩńĝ à ƒĩēĺď'ś ĺàƀēĺ àĺśō ćĥàńĝē ţĥē ÀƤĨ ńàḿē?\"],\"5lWFkC\":[\"Śĩĝń ĩń\"],\"e+RpCP\":[\"Śĩĝń ũƥ\"],\"5v3IHX\":[\"Śĩńĝĺē śĩĝń-ōń (ŚŚŌ)\"],\"6Uau97\":[\"Śķĩƥ\"],\"f6Hub0\":[\"Śōŕţ\"],\"65A04M\":[\"Śƥàńĩśĥ\"],\"vnS6Rf\":[\"ŚŚŌ\"],\"ku9TbG\":[\"Śũƀďōḿàĩń\"],\"omhc+7\":[\"Śũƀďōḿàĩń àĺŕēàďŷ ţàķēń\"],\"OlC/tU\":[\"Śũƀďōḿàĩń ćàń ńōţ ƀē ĺōńĝēŕ ţĥàń 30 ćĥàŕàćţēŕś\"],\"ZETwlU\":[\"Śũƀďōḿàĩń ćàń ńōţ ƀē śĥōŕţēŕ ţĥàń 3 ćĥàŕàćţēŕś\"],\"B5jRKH\":[\"Śũƀśćŕĩƥţĩōń ĥàś ƀēēń śŵĩţćĥēď \",[\"to\"]],\"AxQiPW\":[\"Śũḿ\"],\"XYLcNv\":[\"Śũƥƥōŕţ\"],\"9yk9d1\":[\"Śŵĩţćĥ \",[\"from\"]],\"qi74XZ\":[\"Śŵĩţćĥ \",[\"to\"]],\"L6Fg36\":[\"Śŵĩţćĥ ƀĩĺĺĩńĝ \",[\"to\"]],\"AtzMpB\":[\"Śŷńćĥŕōńĩźē Ƒĩēĺď Ĺàƀēĺ àńď ÀƤĨ Ńàḿē\"],\"E3AMmw\":[\"Śŷśţēḿ śēţţĩńĝś - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Śŷśţēḿ Śēţţĩńĝś - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Ţēŕḿś ōƒ Śēŕvĩćē\"],\"NnH3pK\":[\"Ţēśţ\"],\"bU9B27\":[\"Ţēśţ Ŵōŕķƒĺōŵ\"],\"2OUtmv\":[\"Ţĥē ďēśćŕĩƥţĩōń ōƒ ţĥĩś ƒĩēĺď\"],\"VGZYbZ\":[\"Ţĥē ēḿàĩĺ àśśōćĩàţēď ţō ŷōũŕ àććōũńţ\"],\"h8mvCd\":[\"Ţĥē ńàḿē àńď ĩćōń ōƒ ţĥĩś ƒĩēĺď\"],\"+C8Rdp\":[\"Ţĥē ńàḿē ōƒ ŷōũŕ ōŕĝàńĩźàţĩōń\"],\"L97sPr\":[\"Ţĥē ƥàĝē ŷōũ'ŕē śēēķĩńĝ ĩś ēĩţĥēŕ ĝōńē ōŕ ńēvēŕ ŵàś. Ĺēţ'ś ĝēţ ŷōũ ƀàćķ ōń ţŕàćķ\"],\"uWikAA\":[\"Ţĥē vàĺũēś ōƒ ţĥĩś ƒĩēĺď\"],\"+69KDk\":[\"Ţĥē vàĺũēś ōƒ ţĥĩś ƒĩēĺď ḿũśţ ƀē ũńĩǫũē\"],\"ynfkhb\":[\"Ţĥēŕē ŵàś àń ēŕŕōŕ ŵĥĩĺē ũƥďàţĩńĝ ƥàśśŵōŕď.\"],\"PmtLRf\":[\"Ţĥēŕē ŵàś àń ĩśśũē\"],\"hqCwGc\":[\"Ţĥĩś àćţĩōń ćàńńōţ ƀē ũńďōńē. Ţĥĩś ŵĩĺĺ ƥēŕḿàńēńţĺŷ ďēĺēţē ţĥĩś ũśēŕ àńď ŕēḿōvē ţĥēḿ ƒŕōḿ àĺĺ ţĥēĩŕ àśśĩĝńḿēńţś.\"],\"gWGuHC\":[\"Ţĥĩś àćţĩōń ćàńńōţ ƀē ũńďōńē. Ţĥĩś ŵĩĺĺ ƥēŕḿàńēńţĺŷ ďēĺēţē ŷōũŕ ēńţĩŕē ŵōŕķśƥàćē. <0/> Ƥĺēàśē ţŷƥē ĩń ŷōũŕ ēḿàĩĺ ţō ćōńƒĩŕḿ.\"],\"/tr8Uy\":[\"Ţĥĩś Ŕōĺē ĥàś ţĥē ƒōĺĺōŵĩńĝ ƥēŕḿĩśśĩōńś.\"],\"6j5nJX\":[\"Ţĥĩś Ŕōĺē ĩś àśśĩĝńēď ţō ţĥēśē ŵōŕķśƥàćē ḿēḿƀēŕ.\"],\"n9nSNJ\":[\"Ţĩḿē ƒōŕḿàţ\"],\"aqMzDX\":[\"ţō ḿōńţĥĺŷ\"],\"WXXiXO\":[\"ţō ŷēàŕĺŷ\"],\"PiUt3N\":[\"Ţŕĩĝĝēŕ Ţŷƥē\"],\"IQ5pAL\":[\"Ţŕĩĝĝēŕ ţŷƥē śĥōũĺď ƀē Ḿàńũàĺ - ŵĥēń ńō ŕēćōŕď(ś) àŕē śēĺēćţēď\"],\"+zy2Nq\":[\"Ţŷƥē\"],\"U83IeL\":[\"Ţŷƥē àńŷţĥĩńĝ\"],\"wSXm5S\":[\"Ũńĩǫũē\"],\"29VNqC\":[\"Ũńķńōŵń ēŕŕōŕ\"],\"GQCXQS\":[\"Ũńĺĩḿĩţēď ćōńţàćţś\"],\"ONWvwQ\":[\"Ũƥĺōàď\"],\"IagCbF\":[\"ŨŔĹ\"],\"6dMpmz\":[\"Ũśē àś ďŕàƒţ\"],\"oTTQsc\":[\"Ũśē ĺēţţēŕ, ńũḿƀēŕ àńď ďàśĥ ōńĺŷ. Śţàŕţ àńď ƒĩńĩśĥ ŵĩţĥ à ĺēţţēŕ ōŕ à ńũḿƀēŕ\"],\"c6uZUV\":[\"Ũśē ōũŕ ÀƤĨ ōŕ àďď ŷōũŕ ƒĩŕśţ \",[\"objectLabel\"],\" ḿàńũàĺĺŷ\"],\"7PzzBU\":[\"Ũśēŕ\"],\"IjyOjp\":[\"Ũśēŕ ĩś ńōţ ĺōĝĝēď ĩń\"],\"fXVIZq\":[\"Vàĺũēś\"],\"KANz0G\":[\"Vĩēŵ ƀĩĺĺĩńĝ ďēţàĩĺś\"],\"6n7jtr\":[\"Vĩśũàĺĩźē\"],\"id6ein\":[\"Ŵē śũƥƥōŕţ ŷōũŕ śǫũàŕē ƤŃĜś, ĵƤĒĜś àńď ĜĨƑś ũńďēŕ 10Ḿß\"],\"ZS7vYp\":[\"Ŵē ŵĩĺĺ śēńď ƤŌŚŢ ŕēǫũēśţś ţō ţĥĩś ēńďƥōĩńţ ƒōŕ ēvēŕŷ ńēŵ ēvēńţ\"],\"TRDppN\":[\"Ŵēƀĥōōķ\"],\"v1kQyJ\":[\"Ŵēƀĥōōķś\"],\"Jt1WNL\":[\"Ŵēĺćōḿē ţō\"],\"ke0EDP\":[\"Ŵēĺćōḿē ţō \",[\"workspaceName\"]],\"C51ilI\":[\"Ŵĥēń ţĥē ÀƤĨ ķēŷ ŵĩĺĺ ēxƥĩŕē.\"],\"leUubq\":[\"Ŵĥēń ţĥē ķēŷ ŵĩĺĺ ƀē ďĩśàƀĺēď\"],\"wvyffT\":[\"Ŵōŕķƒĺōŵ ćàńńōţ ƀē ţēśţēď\"],\"pmUArF\":[\"Ŵōŕķśƥàćē\"],\"VicISP\":[\"Ŵōŕķśƥàćē Ďēĺēţĩōń\"],\"Y0Fj4S\":[\"Ŵōŕķśƥàćē ĺōĝō\"],\"CozWO1\":[\"Ŵōŕķśƥàćē ńàḿē\"],\"Q9pNST\":[\"Ŵŕĩţē à ďēśćŕĩƥţĩōń\"],\"3d1wCB\":[\"ŷēś\"],\"zSkMV0\":[\"Ŷōũ ŵĩĺĺ ƀē ćĥàŕĝēď ĩḿḿēďĩàţēĺŷ ƒōŕ ţĥē ƒũĺĺ ŷēàŕ.\"],\"XVnj6K\":[\"Ŷōũŕ ćŕēďĩţ ƀàĺàńćē ŵĩĺĺ ƀē ũśēď ţō ƥàŷ ţĥē ḿōńţĥĺŷ ƀĩĺĺś.\"],\"9ivpwk\":[\"Ŷōũŕ ńàḿē àś ĩţ ŵĩĺĺ ƀē ďĩśƥĺàŷēď\"],\"3RASGN\":[\"Ŷōũŕ ńàḿē àś ĩţ ŵĩĺĺ ƀē ďĩśƥĺàŷēď ōń ţĥē àƥƥ\"],\"YQK8fJ\":[\"Ŷōũŕ Ŵōŕķśƥàćē\"],\"RhNbPE\":[\"Ŷōũŕ ŵōŕķśƥàćē ŵĩĺĺ ƀē ďĩśàƀĺēď\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/pt-BR.ts b/packages/twenty-front/src/locales/generated/pt-BR.ts index 9a60e8113..dfc578e87 100644 --- a/packages/twenty-front/src/locales/generated/pt-BR.ts +++ b/packages/twenty-front/src/locales/generated/pt-BR.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" de \",[\"fieldLabel\"]],\"uogEAL\":[\"Chave da API \",[\"apiKeyName\"]],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1.000 execuções de nós de workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configurar campo\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"Abortar\"],\"uyJsf6\":[\"Sobre\"],\"AeXO77\":[\"Conta\"],\"nD0Y+a\":[\"Exclusão de Conta\"],\"bPwFdf\":[\"Contas\"],\"FQBaXG\":[\"Ativar\"],\"tu8A/k\":[\"Ativar Workflow\"],\"F6pfE9\":[\"Ativo\"],\"Mue4oc\":[\"Chaves API ativas criadas por você ou sua equipe.\"],\"m16xKo\":[\"Adicionar\"],\"DpV70M\":[\"Adicionar Campo\"],\"dEO3Zx\":[\"Adicionar Objeto\"],\"sgXUv+\":[\"Adicionar Provedor de Identidade SSO\"],\"5+ttxv\":[\"Adicionar à Lista de Bloqueio\"],\"pBsoKL\":[\"Adicionar aos Favoritos\"],\"m2qDV8\":[\"Adicione seu primeiro \",[\"objectLabel\"]],\"vLO+NG\":[\"Adicionado \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Todos\"],\"3saA7W\":[\"Todos (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Todas as Funções\"],\"GMx1K0\":[\"Permitir logins através da funcionalidade de logon único do Google.\"],\"dea+zy\":[\"Permitir logins através da funcionalidade de logon único da Microsoft.\"],\"wMg43c\":[\"Permitir o convite de novos usuários compartilhando um link de convite.\"],\"vHeVg5\":[\"Permitir que os usuários façam login com e-mail e senha.\"],\"LG4K0m\":[\"Ocorreu um erro ao atualizar a senha\"],\"mJ6m4C\":[\"Descrição opcional\"],\"HZFm5R\":[\"e\"],\"0RqpZr\":[\"API e Webhooks\"],\"yRnk5W\":[\"Chave API\"],\"5h8ooz\":[\"Chaves API\"],\"kAtj+q\":[\"Nome da API\"],\"aAIQg2\":[\"Aparência\"],\"3iX0kh\":[\"Tem certeza de que deseja alterar o intervalo de cobrança?\"],\"nYD/Cq\":[\"Ascendente\"],\"rfYmIr\":[\"Atribuir funções para especificar as permissões de acesso de cada membro\"],\"lxQ+5m\":[\"Atribuído a\"],\"H8QGSx\":[\"Pelo menos 8 caracteres.\"],\"Y7Dx6e\":[\"Pelo menos um método de autenticação deve estar ativado\"],\"P8fBlG\":[\"Autenticação\"],\"yIVrHZ\":[\"Autorizar\"],\"3uQmjD\":[\"Média\"],\"Dht9W3\":[\"Voltar ao conteúdo\"],\"R+w/Va\":[\"Faturamento\"],\"K1172m\":[\"Lista de Bloqueio\"],\"2yl5lQ\":[\"Agendar uma Chamada\"],\"8Pfllj\":[\"Ao usar o Twenty, você concorda com os\"],\"PmmvzS\":[\"Calcular\"],\"AjVXBS\":[\"Calendário\"],\"EUpfsd\":[\"Calendários\"],\"dEgA5A\":[\"Cancelar\"],\"0TllC8\":[\"Cancele a qualquer momento\"],\"rRK/Lf\":[\"Cancelar Plano\"],\"N6gPiD\":[\"Cancelar sua assinatura\"],\"OfzMnb\":[\"Alterar \",[\"to\"]],\"VhMDMg\":[\"Alterar Senha\"],\"SviKkE\":[\"Chinês - Simplificado\"],\"dzb4Ep\":[\"Chinês - Tradicional\"],\"JEFFOR\":[\"Escolha um Objeto\"],\"KT6rEB\":[\"Escolha seu Provedor\"],\"9qP96p\":[\"Escolha seu Teste\"],\"yz7wBu\":[\"Fechar\"],\"+zUMwJ\":[\"Configurar uma Conexão SSO\"],\"QTNsSm\":[\"Configure e personalize suas preferências de calendário.\"],\"aGwm+D\":[\"Configurar como as datas são exibidas no aplicativo\"],\"Bh4GBD\":[\"Configure suas configurações de e-mail e calendário.\"],\"D8ATlr\":[\"Conecte uma nova conta ao seu espaço de trabalho\"],\"Zgi9Fd\":[\"Conectar com o Google\"],\"IOfqM8\":[\"Conectar com a Microsoft\"],\"9TzudL\":[\"Contas Conectadas\"],\"M73whl\":[\"Contexto\"],\"xGVfLh\":[\"Continuar\"],\"RvVi9c\":[\"Continuar com o E-mail\"],\"oZyG4C\":[\"Continuar com o Google\"],\"ztoybH\":[\"Continuar com a Microsoft\"],\"CcGOj+\":[\"Copiloto\"],\"7eVkEH\":[\"Copiar link do convite\"],\"Ej5euX\":[\"Copie essa chave, pois ela não ficará visível novamente\"],\"wBMjJ2\":[\"Contagem\"],\"EkZfen\":[\"Contar todos\"],\"vQJINq\":[\"Contar vazios\"],\"DzRsDJ\":[\"Contar não vazios\"],\"9FZBbf\":[\"Contar valores únicos\"],\"zNoOC2\":[\"Crie um workflow e retorne aqui para visualizar suas versões\"],\"uXGLuq\":[\"Criar Chave API\"],\"d0DCww\":[\"Criar novo registro\"],\"dkAPxi\":[\"Criar Webhook\"],\"8skTDV\":[\"Objetos personalizados\"],\"qt+EaC\":[\"Personalize os campos disponíveis nas visualizações \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personalizar Domínio\"],\"bCJa9l\":[\"Personalize a segurança do seu espaço de trabalho\"],\"Zz6Cxn\":[\"Zona de Perigo\"],\"5cNMFz\":[\"Modelo de Dados\"],\"r+cVRP\":[\"Tipo de Dados\"],\"mYGY3B\":[\"Data\"],\"Ud9zHv\":[\"Data e Hora\"],\"5y3O+A\":[\"Desativar\"],\"qk4i22\":[\"Desative \\\"Sincronizar Rótulos de Objetos e Nomes de API\\\" para definir um nome de API personalizado\"],\"gexAq8\":[\"Desativar este campo\"],\"4tpC8V\":[\"Desativar Workflow\"],\"Y2ImVJ\":[\"Defina o nome e a descrição do seu objeto\"],\"cnGeoo\":[\"Excluir\"],\"ZDGm40\":[\"Excluir Conta\"],\"gAz0S5\":[\"Excluir a conta e todos os dados associados\"],\"hGfWDm\":[\"Excluir Chave API\"],\"4dpwsE\":[\"Excluir Registro\"],\"kf0A63\":[\"Excluir Registros\"],\"T6S2Ns\":[\"Excluir esta integração\"],\"snMaH4\":[\"Excluir Webhook\"],\"kYu0eF\":[\"Excluir Espaço de Trabalho\"],\"mk2Ygs\":[\"Excluir todo o seu workspace\"],\"Cko536\":[\"Decrescente\"],\"Nu4oKW\":[\"Descrição\"],\"2xxBws\":[\"Destruir\"],\"n+SX4g\":[\"Desenvolvedores\"],\"zAg2B9\":[\"Descartar Rascunho\"],\"i66xz9\":[\"Exibir como data relativa\"],\"EoKe5U\":[\"Domínio\"],\"QVVmxi\":[\"Ex.: integração de backoffice\"],\"tOkc8o\":[\"Mais antigo\"],\"JTbQuO\":[\"Data mais antiga\"],\"v+uKyy\":[\"Editar intervalo de cobrança\"],\"h2KoTu\":[\"Editar método de pagamento, ver suas faturas e mais\"],\"6o1M/Q\":[\"Edite o nome do seu subdomínio ou defina um domínio personalizado.\"],\"O3oNi5\":[\"E-mail\"],\"lfQsvW\":[\"Integração de e-mail\"],\"QT/Wo7\":[\"O e-mail ou domínio já está na lista de bloqueio\"],\"BXEcos\":[\"E-mails\"],\"eXoH4Q\":[\"colaboradores\"],\"gqv5ZL\":[\"Funcionários\"],\"N2S1rs\":[\"Vazio\"],\"T3juzf\":[\"URL do endpoint\"],\"lYGfRP\":[\"Inglês\"],\"/bfFKe\":[\"Aproveite um teste gratuito de \",[\"withCreditCardTrialPeriodDuration\"],\" dias\"],\"GpB8YV\":[\"Enterprise\"],\"c3qGJX\":[\"Erro ao excluir chave da API: \",[\"err\"]],\"bj7nh3\":[\"Erro ao regenerar chave da API: \",[\"err\"]],\"VSQxWH\":[\"Erro ao trocar a assinatura \",[\"to\"],\".\"],\"JLxMta\":[\"Estabeleça endpoints de Webhook para notificações de eventos assíncronos.\"],\"cIgBjB\":[\"Excluir as seguintes pessoas e domínios da minha sincronização de e-mail\"],\"fV7V51\":[\"Objetos existentes\"],\"IZ4o2e\":[\"Sair das Configurações\"],\"tXGQvS\":[\"O nó selecionado deve ser um nó de etapa de criação.\"],\"bKBhgb\":[\"Experiência\"],\"LxRNPw\":[\"Expiração\"],\"SkXfL0\":[\"Data de Expiração\"],\"i9qiyR\":[\"Expira em\"],\"GS+Mus\":[\"Exportar\"],\"ep2rbf\":[\"Exportar registros\"],\"q46CjD\":[\"Exportar para PDF\"],\"DaGxE0\":[\"Exportar visualização\"],\"X9kySA\":[\"Favoritos\"],\"zXgopL\":[\"Tipo de campo\"],\"vF68cg\":[\"Campos\"],\"3w/aqw\":[\"Contagem de campos\"],\"o7J4JM\":[\"Filtro\"],\"cSev+j\":[\"Filtros\"],\"glx6on\":[\"Esqueceu sua senha?\"],\"nLC6tu\":[\"Francês\"],\"aTieE0\":[\"de mensal para anual\"],\"K04lE5\":[\"de anual para mensal\"],\"scmRyR\":[\"Acesso total\"],\"xANKBj\":[\"Funções\"],\"Weq9zb\":[\"Geral\"],\"DDcvSo\":[\"Alemão\"],\"NXEW3h\":[\"Aproveite ao máximo seu workspace convidando sua equipe.\"],\"zSGbaR\":[\"Faça sua assinatura\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Conceda ao suporte da Twenty acesso temporário ao seu workspace para que possamos solucionar problemas ou recuperar conteúdo em seu nome. Você pode revogar o acesso a qualquer momento.\"],\"vLyv1R\":[\"Ocultar\"],\"XTWO+W\":[\"Ícone e Nome\"],\"sJGljQ\":[\"Identificador\"],\"j843N3\":[\"Se você perdeu essa chave, pode gerá-la novamente, mas saiba que qualquer script que use essa chave precisará ser atualizado. Digite \\\"\",[\"confirmationValue\"],\"\\\" para confirmar.\"],\"NoNwIX\":[\"Inativo\"],\"pZ/USH\":[\"Índices\"],\"JE2tjr\":[\"A entrada deve estar em camel case e não pode começar com um número\"],\"AwUsnG\":[\"Instâncias\"],\"nbfdhU\":[\"Integrações\"],\"NtFk/Z\":[\"Provedor de autenticação inválido\"],\"B2Tpo0\":[\"E-mail inválido\"],\"/m52AE\":[\"E-mail ou domínio inválido\"],\"QdoUFL\":[\"Valores de formulário inválidos\"],\"0M8+El\":[\"Convidar por e-mail\"],\"PWIq/W\":[\"Convidar por link\"],\"3athPG\":[\"Convidar por Link\"],\"5IfmKA\":[\"Link de convite enviado para endereços de e-mail\"],\"d+Y+rP\":[\"Convide sua equipe\"],\"Lj7sBL\":[\"Italiano\"],\"dFtidv\":[\"Japonês\"],\"h6S9Yz\":[\"Coreano\"],\"zrpwCd\":[\"Laboratório\"],\"vXIe7J\":[\"Idioma\"],\"wL3cK8\":[\"Mais recente\"],\"Kcjbmz\":[\"Data mais recente\"],\"pQjjYo\":[\"Link copiado para a área de transferência\"],\"FgAxTj\":[\"Sair\"],\"nOhz3x\":[\"Sair\"],\"T6YjCk\":[\"Gerenciar Membros\"],\"4cjU2u\":[\"Gerencie os membros do seu espaço aqui\"],\"FyFNsd\":[\"Gerencie suas contas de internet.\"],\"36kYu0\":[\"Gerenciar sua assinatura\"],\"3Sdni6\":[\"Marcar como concluído\"],\"CK1KXz\":[\"Máximo\"],\"wlQNTg\":[\"Membros\"],\"eTUF28\":[\"Mínimo\"],\"3Siwmw\":[\"Mais opções\"],\"iSLA/r\":[\"Mover para a esquerda\"],\"Ubl2by\":[\"Mover para a direita\"],\"6YtxFj\":[\"Nome\"],\"z+6jaZ\":[\"Nome da sua chave de API\"],\"J7w8lI\":[\"Nome do seu workspace\"],\"2T8KCk\":[\"Navegar para o próximo registro\"],\"veSA19\":[\"Navegar para a próxima versão\"],\"ZTEho+\":[\"Navegar para o próximo workflow\"],\"2tw9bo\":[\"Navegar para o registro anterior\"],\"I+Pm5V\":[\"Navegar para a versão anterior\"],\"QVUN3K\":[\"Navegar para o workflow anterior\"],\"isRobC\":[\"Novo\"],\"Kcr9Fr\":[\"Nova conta\"],\"o8MyXb\":[\"Nova chave\"],\"j313SZ\":[\"Nova Chave\"],\"hFxdey\":[\"Novo Objeto\"],\"7vhWI8\":[\"Nova Senha\"],\"BcCzLv\":[\"Novo registro\"],\"2lmOC5\":[\"Nova Função\"],\"U1DAok\":[\"Novo Webhook\"],\"pwenQu\":[\"Nenhuma conta conectada\"],\"0uWxPM\":[\"Nenhuma execução de workflow ainda\"],\"AQCvCC\":[\"Nenhuma versão de workflow ainda\"],\"4wUkDk\":[\"Não vazio\"],\"W0i24j\":[\"Objeto\"],\"B3toQF\":[\"Objetos\"],\"KNz3EF\":[\"Fora do caminho comum\"],\"OV5wZZ\":[\"Aberto\"],\"0zpgxV\":[\"Opções\"],\"BzEFor\":[\"ou\"],\"/IX/7x\":[\"Outros\"],\"boJlGf\":[\"Página não encontrada\"],\"8ZsakT\":[\"Senha\"],\"BxQ79w\":[\"A senha foi atualizada\"],\"mi6Rel\":[\"O link de redefinição de senha foi enviado para o e-mail\"],\"SrVzRe\":[\"Porcentagem\"],\"yIK1GU\":[\"Porcentagem vazia\"],\"PWLd4c\":[\"Porcentagem não vazia\"],\"Bv3y5w\":[\"Destruir permanentemente o registro\"],\"N0+GsR\":[\"Imagem\"],\"jEw0Mr\":[\"Digite um URL válido\"],\"6nsIo3\":[\"Digite \\\"\",[\"confirmationValue\"],\"\\\" para confirmar que deseja excluir esta chave de API. Esteja ciente de que qualquer script que use esta chave deixará de funcionar.\"],\"mFZTXr\":[\"Digite \",[\"confirmationText\"],\" para confirmar que deseja excluir este webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Português - Brasil\"],\"xtXHeo\":[\"Português - Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Prévia\"],\"LcET2C\":[\"Política de privacidade\"],\"vERlcd\":[\"Perfil\"],\"YJgRqq\":[\"Pseudo-inglês\"],\"ibPuCP\":[\"Ler documentação\"],\"v3xM25\":[\"Receber um e-mail com o link de atualização da senha\"],\"dSCufP\":[\"Seleção de registros\"],\"vpZcGd\":[\"Regenerar uma chave de API\"],\"Mwqo5m\":[\"Regenerar chave\"],\"D+Mv78\":[\"Regenerar chave\"],\"5icoS1\":[\"Lançamentos\"],\"t/YqKh\":[\"Remover\"],\"T/pF0Z\":[\"Remover dos favoritos\"],\"KbS2K9\":[\"Redefinir senha\"],\"1IWc1n\":[\"Redefinir para\"],\"kx0s+n\":[\"Resultados\"],\"5dJK4M\":[\"Funções\"],\"UX0N2y\":[\"Execute um workflow e retorne aqui para visualizar suas execuções\"],\"A1taO8\":[\"Pesquisar\"],\"8NBMeZ\":[\"Pesquisar '\",[\"commandMenuSearch\"],\"' com...\"],\"l1/uy2\":[\"Pesquisar um campo...\"],\"k7kp5/\":[\"Pesquisar um índice...\"],\"7taA9j\":[\"Pesquisar campos\"],\"ofuw3g\":[\"Pesquisar um objeto...\"],\"IMeaSJ\":[\"Pesquisar registros\"],\"a3LDKx\":[\"Segurança\"],\"QREcJS\":[\"Ver versão ativa\"],\"OpPn5Z\":[\"Ver execuções\"],\"EtyY4+\":[\"Ver versões\"],\"lYhPN0\":[\"Ver histórico de versões\"],\"xraglu\":[\"Selecione os eventos que deseja enviar para este endpoint\"],\"AXTJAW\":[\"Selecione seu idioma preferido\"],\"mjK8F3\":[\"Envie um e-mail de convite para sua equipe\"],\"yy5k7a\":[\"Painel de Administração do Servidor\"],\"V7fgiB\":[\"Defina a visibilidade do e-mail, gerencie sua lista de bloqueio e mais.\"],\"cx14rp\":[\"Defina o nome do seu domínio\"],\"tn41zE\":[\"Defina o nome do seu subdomínio\"],\"Tz0i8g\":[\"Configurações\"],\"Vy9kmk\":[\"Compartilhe este link para convidar usuários a participar do seu workspace\"],\"gWk8gY\":[\"Alterar o rótulo de um campo também deve alterar o nome da API?\"],\"5lWFkC\":[\"Fazer login\"],\"e+RpCP\":[\"Registrar-se\"],\"5v3IHX\":[\"Logon único (SSO)\"],\"6Uau97\":[\"Pular\"],\"f6Hub0\":[\"Classificar\"],\"65A04M\":[\"Espanhol\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdomínio\"],\"omhc+7\":[\"Subdomínio já ocupado\"],\"OlC/tU\":[\"O subdomínio não pode ter mais de 30 caracteres\"],\"ZETwlU\":[\"O subdomínio não pode ter menos de 3 caracteres\"],\"B5jRKH\":[\"A assinatura foi alterada para \",[\"to\"]],\"AxQiPW\":[\"Soma\"],\"XYLcNv\":[\"Suporte\"],\"9yk9d1\":[\"Alterar de \",[\"from\"]],\"qi74XZ\":[\"Alterar para \",[\"to\"]],\"L6Fg36\":[\"Alterar faturamento para \",[\"to\"]],\"AtzMpB\":[\"Sincronizar o rótulo do campo e o nome da API\"],\"E3AMmw\":[\"Configurações do sistema - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Configurações do sistema - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Termos de Serviço\"],\"NnH3pK\":[\"Teste\"],\"bU9B27\":[\"Teste de Workflow\"],\"2OUtmv\":[\"A descrição deste campo\"],\"VGZYbZ\":[\"O e-mail associado à sua conta\"],\"h8mvCd\":[\"O nome e o ícone deste campo\"],\"L97sPr\":[\"A página que você está procurando não existe mais ou nunca existiu. Vamos colocá-lo de volta no caminho certo\"],\"uWikAA\":[\"Os valores deste campo\"],\"+69KDk\":[\"Os valores deste campo devem ser únicos\"],\"ynfkhb\":[\"Ocorreu um erro ao atualizar a senha.\"],\"PmtLRf\":[\"Houve um problema\"],\"hqCwGc\":[\"Essa ação não pode ser desfeita. Isso excluirá permanentemente este usuário e o removerá de todas as suas atribuições.\"],\"gWGuHC\":[\"Essa ação não pode ser desfeita. Isso excluirá permanentemente todo o seu workspace. <0/> Digite seu e-mail para confirmar.\"],\"n9nSNJ\":[\"Formato de hora\"],\"aqMzDX\":[\"para mensal\"],\"WXXiXO\":[\"para anual\"],\"PiUt3N\":[\"Tipo de gatilho\"],\"IQ5pAL\":[\"O tipo de gatilho deve ser Manual - quando nenhum registro é selecionado\"],\"+zy2Nq\":[\"Tipo\"],\"U83IeL\":[\"Digite qualquer coisa\"],\"wSXm5S\":[\"Único\"],\"GQCXQS\":[\"Contatos ilimitados\"],\"ONWvwQ\":[\"Carregar\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Usar como rascunho\"],\"oTTQsc\":[\"Use apenas letras, números e traços. Comece e termine com uma letra ou um número\"],\"c6uZUV\":[\"Use nossa API ou adicione seu primeiro \",[\"objectLabel\"],\" manualmente\"],\"7PzzBU\":[\"Usuário\"],\"IjyOjp\":[\"O usuário não está conectado\"],\"fXVIZq\":[\"Valores\"],\"KANz0G\":[\"Ver detalhes de faturamento\"],\"6n7jtr\":[\"Visualizar\"],\"id6ein\":[\"Suportamos seus PNGs, JPEGs e GIFs quadrados com menos de 10 MB\"],\"ZS7vYp\":[\"Enviaremos solicitações POST para este endpoint para cada novo evento\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Bem-vindo ao \",[\"workspaceName\"]],\"C51ilI\":[\"Quando a chave de API expirará.\"],\"leUubq\":[\"Quando a chave será desativada\"],\"wvyffT\":[\"O workflow não pode ser testado\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Exclusão do Workspace\"],\"Q9pNST\":[\"Insira uma descrição\"],\"3d1wCB\":[\"sim\"],\"zSkMV0\":[\"A cobrança anual será feita imediatamente.\"],\"XVnj6K\":[\"Seu saldo de crédito será utilizado para pagar as faturas mensais.\"],\"9ivpwk\":[\"Seu nome como será mostrado\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Seu workspace será desativado\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" de \",[\"fieldLabel\"]],\"uogEAL\":[\"Chave da API \",[\"apiKeyName\"]],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1.000 execuções de nós de workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configurar campo\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"Abortar\"],\"uyJsf6\":[\"Sobre\"],\"AeXO77\":[\"Conta\"],\"nD0Y+a\":[\"Exclusão de Conta\"],\"bPwFdf\":[\"Contas\"],\"FQBaXG\":[\"Ativar\"],\"tu8A/k\":[\"Ativar Workflow\"],\"F6pfE9\":[\"Ativo\"],\"Mue4oc\":[\"Chaves API ativas criadas por você ou sua equipe.\"],\"m16xKo\":[\"Adicionar\"],\"DpV70M\":[\"Adicionar Campo\"],\"dEO3Zx\":[\"Adicionar Objeto\"],\"sgXUv+\":[\"Adicionar Provedor de Identidade SSO\"],\"5+ttxv\":[\"Adicionar à Lista de Bloqueio\"],\"pBsoKL\":[\"Adicionar aos Favoritos\"],\"m2qDV8\":[\"Adicione seu primeiro \",[\"objectLabel\"]],\"vLO+NG\":[\"Adicionado \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Todos\"],\"3saA7W\":[\"Todos (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Todas as Funções\"],\"GMx1K0\":[\"Permitir logins através da funcionalidade de logon único do Google.\"],\"dea+zy\":[\"Permitir logins através da funcionalidade de logon único da Microsoft.\"],\"wMg43c\":[\"Permitir o convite de novos usuários compartilhando um link de convite.\"],\"vHeVg5\":[\"Permitir que os usuários façam login com e-mail e senha.\"],\"LG4K0m\":[\"Ocorreu um erro ao atualizar a senha\"],\"mJ6m4C\":[\"Descrição opcional\"],\"HZFm5R\":[\"e\"],\"0RqpZr\":[\"API e Webhooks\"],\"yRnk5W\":[\"Chave API\"],\"5h8ooz\":[\"Chaves API\"],\"kAtj+q\":[\"Nome da API\"],\"aAIQg2\":[\"Aparência\"],\"3iX0kh\":[\"Tem certeza de que deseja alterar o intervalo de cobrança?\"],\"nYD/Cq\":[\"Ascendente\"],\"rfYmIr\":[\"Atribuir funções para especificar as permissões de acesso de cada membro\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"Atribuído a\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"Pelo menos 8 caracteres.\"],\"Y7Dx6e\":[\"Pelo menos um método de autenticação deve estar ativado\"],\"P8fBlG\":[\"Autenticação\"],\"yIVrHZ\":[\"Autorizar\"],\"3uQmjD\":[\"Média\"],\"Dht9W3\":[\"Voltar ao conteúdo\"],\"R+w/Va\":[\"Faturamento\"],\"K1172m\":[\"Lista de Bloqueio\"],\"2yl5lQ\":[\"Agendar uma Chamada\"],\"8Pfllj\":[\"Ao usar o Twenty, você concorda com os\"],\"PmmvzS\":[\"Calcular\"],\"AjVXBS\":[\"Calendário\"],\"EUpfsd\":[\"Calendários\"],\"dEgA5A\":[\"Cancelar\"],\"0TllC8\":[\"Cancele a qualquer momento\"],\"rRK/Lf\":[\"Cancelar Plano\"],\"N6gPiD\":[\"Cancelar sua assinatura\"],\"OfzMnb\":[\"Alterar \",[\"to\"]],\"VhMDMg\":[\"Alterar Senha\"],\"SviKkE\":[\"Chinês - Simplificado\"],\"dzb4Ep\":[\"Chinês - Tradicional\"],\"JEFFOR\":[\"Escolha um Objeto\"],\"KT6rEB\":[\"Escolha seu Provedor\"],\"9qP96p\":[\"Escolha seu Teste\"],\"yz7wBu\":[\"Fechar\"],\"+zUMwJ\":[\"Configurar uma Conexão SSO\"],\"QTNsSm\":[\"Configure e personalize suas preferências de calendário.\"],\"aGwm+D\":[\"Configurar como as datas são exibidas no aplicativo\"],\"Bh4GBD\":[\"Configure suas configurações de e-mail e calendário.\"],\"D8ATlr\":[\"Conecte uma nova conta ao seu espaço de trabalho\"],\"Zgi9Fd\":[\"Conectar com o Google\"],\"IOfqM8\":[\"Conectar com a Microsoft\"],\"9TzudL\":[\"Contas Conectadas\"],\"M73whl\":[\"Contexto\"],\"xGVfLh\":[\"Continuar\"],\"RvVi9c\":[\"Continuar com o E-mail\"],\"oZyG4C\":[\"Continuar com o Google\"],\"ztoybH\":[\"Continuar com a Microsoft\"],\"CcGOj+\":[\"Copiloto\"],\"7eVkEH\":[\"Copiar link do convite\"],\"Ej5euX\":[\"Copie essa chave, pois ela não ficará visível novamente\"],\"wBMjJ2\":[\"Contagem\"],\"EkZfen\":[\"Contar todos\"],\"vQJINq\":[\"Contar vazios\"],\"DzRsDJ\":[\"Contar não vazios\"],\"9FZBbf\":[\"Contar valores únicos\"],\"zNoOC2\":[\"Crie um workflow e retorne aqui para visualizar suas versões\"],\"uXGLuq\":[\"Criar Chave API\"],\"d0DCww\":[\"Criar novo registro\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"Criar Webhook\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"Objetos personalizados\"],\"qt+EaC\":[\"Personalize os campos disponíveis nas visualizações \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personalizar Domínio\"],\"bCJa9l\":[\"Personalize a segurança do seu espaço de trabalho\"],\"Zz6Cxn\":[\"Zona de Perigo\"],\"5cNMFz\":[\"Modelo de Dados\"],\"r+cVRP\":[\"Tipo de Dados\"],\"mYGY3B\":[\"Data\"],\"Ud9zHv\":[\"Data e Hora\"],\"5y3O+A\":[\"Desativar\"],\"qk4i22\":[\"Desative \\\"Sincronizar Rótulos de Objetos e Nomes de API\\\" para definir um nome de API personalizado\"],\"gexAq8\":[\"Desativar este campo\"],\"4tpC8V\":[\"Desativar Workflow\"],\"Y2ImVJ\":[\"Defina o nome e a descrição do seu objeto\"],\"cnGeoo\":[\"Excluir\"],\"ZDGm40\":[\"Excluir Conta\"],\"gAz0S5\":[\"Excluir a conta e todos os dados associados\"],\"hGfWDm\":[\"Excluir Chave API\"],\"4dpwsE\":[\"Excluir Registro\"],\"kf0A63\":[\"Excluir Registros\"],\"T6S2Ns\":[\"Excluir esta integração\"],\"snMaH4\":[\"Excluir Webhook\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"Excluir Espaço de Trabalho\"],\"mk2Ygs\":[\"Excluir todo o seu workspace\"],\"Cko536\":[\"Decrescente\"],\"Nu4oKW\":[\"Descrição\"],\"2xxBws\":[\"Destruir\"],\"n+SX4g\":[\"Desenvolvedores\"],\"zAg2B9\":[\"Descartar Rascunho\"],\"i66xz9\":[\"Exibir como data relativa\"],\"EoKe5U\":[\"Domínio\"],\"QVVmxi\":[\"Ex.: integração de backoffice\"],\"tOkc8o\":[\"Mais antigo\"],\"JTbQuO\":[\"Data mais antiga\"],\"v+uKyy\":[\"Editar intervalo de cobrança\"],\"h2KoTu\":[\"Editar método de pagamento, ver suas faturas e mais\"],\"6o1M/Q\":[\"Edite o nome do seu subdomínio ou defina um domínio personalizado.\"],\"O3oNi5\":[\"E-mail\"],\"lfQsvW\":[\"Integração de e-mail\"],\"QT/Wo7\":[\"O e-mail ou domínio já está na lista de bloqueio\"],\"BXEcos\":[\"E-mails\"],\"eXoH4Q\":[\"colaboradores\"],\"gqv5ZL\":[\"Funcionários\"],\"N2S1rs\":[\"Vazio\"],\"T3juzf\":[\"URL do endpoint\"],\"lYGfRP\":[\"Inglês\"],\"/bfFKe\":[\"Aproveite um teste gratuito de \",[\"withCreditCardTrialPeriodDuration\"],\" dias\"],\"GpB8YV\":[\"Enterprise\"],\"c3qGJX\":[\"Erro ao excluir chave da API: \",[\"err\"]],\"bj7nh3\":[\"Erro ao regenerar chave da API: \",[\"err\"]],\"VSQxWH\":[\"Erro ao trocar a assinatura \",[\"to\"],\".\"],\"JLxMta\":[\"Estabeleça endpoints de Webhook para notificações de eventos assíncronos.\"],\"cIgBjB\":[\"Excluir as seguintes pessoas e domínios da minha sincronização de e-mail\"],\"fV7V51\":[\"Objetos existentes\"],\"IZ4o2e\":[\"Sair das Configurações\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"Experiência\"],\"LxRNPw\":[\"Expiração\"],\"SkXfL0\":[\"Data de Expiração\"],\"i9qiyR\":[\"Expira em\"],\"GS+Mus\":[\"Exportar\"],\"ep2rbf\":[\"Exportar registros\"],\"q46CjD\":[\"Exportar para PDF\"],\"DaGxE0\":[\"Exportar visualização\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"Favoritos\"],\"zXgopL\":[\"Tipo de campo\"],\"vF68cg\":[\"Campos\"],\"3w/aqw\":[\"Contagem de campos\"],\"o7J4JM\":[\"Filtro\"],\"cSev+j\":[\"Filtros\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"Esqueceu sua senha?\"],\"nLC6tu\":[\"Francês\"],\"aTieE0\":[\"de mensal para anual\"],\"K04lE5\":[\"de anual para mensal\"],\"scmRyR\":[\"Acesso total\"],\"xANKBj\":[\"Funções\"],\"Weq9zb\":[\"Geral\"],\"DDcvSo\":[\"Alemão\"],\"NXEW3h\":[\"Aproveite ao máximo seu workspace convidando sua equipe.\"],\"zSGbaR\":[\"Faça sua assinatura\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Conceda ao suporte da Twenty acesso temporário ao seu workspace para que possamos solucionar problemas ou recuperar conteúdo em seu nome. Você pode revogar o acesso a qualquer momento.\"],\"vLyv1R\":[\"Ocultar\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"Ícone e Nome\"],\"sJGljQ\":[\"Identificador\"],\"j843N3\":[\"Se você perdeu essa chave, pode gerá-la novamente, mas saiba que qualquer script que use essa chave precisará ser atualizado. Digite \\\"\",[\"confirmationValue\"],\"\\\" para confirmar.\"],\"NoNwIX\":[\"Inativo\"],\"pZ/USH\":[\"Índices\"],\"JE2tjr\":[\"A entrada deve estar em camel case e não pode começar com um número\"],\"AwUsnG\":[\"Instâncias\"],\"nbfdhU\":[\"Integrações\"],\"NtFk/Z\":[\"Provedor de autenticação inválido\"],\"B2Tpo0\":[\"E-mail inválido\"],\"/m52AE\":[\"E-mail ou domínio inválido\"],\"QdoUFL\":[\"Valores de formulário inválidos\"],\"0M8+El\":[\"Convidar por e-mail\"],\"PWIq/W\":[\"Convidar por link\"],\"3athPG\":[\"Convidar por Link\"],\"5IfmKA\":[\"Link de convite enviado para endereços de e-mail\"],\"d+Y+rP\":[\"Convide sua equipe\"],\"Lj7sBL\":[\"Italiano\"],\"dFtidv\":[\"Japonês\"],\"h6S9Yz\":[\"Coreano\"],\"zrpwCd\":[\"Laboratório\"],\"vXIe7J\":[\"Idioma\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"Mais recente\"],\"Kcjbmz\":[\"Data mais recente\"],\"pQjjYo\":[\"Link copiado para a área de transferência\"],\"FgAxTj\":[\"Sair\"],\"nOhz3x\":[\"Sair\"],\"T6YjCk\":[\"Gerenciar Membros\"],\"4cjU2u\":[\"Gerencie os membros do seu espaço aqui\"],\"FyFNsd\":[\"Gerencie suas contas de internet.\"],\"36kYu0\":[\"Gerenciar sua assinatura\"],\"3Sdni6\":[\"Marcar como concluído\"],\"CK1KXz\":[\"Máximo\"],\"wlQNTg\":[\"Membros\"],\"eTUF28\":[\"Mínimo\"],\"3Siwmw\":[\"Mais opções\"],\"iSLA/r\":[\"Mover para a esquerda\"],\"Ubl2by\":[\"Mover para a direita\"],\"6YtxFj\":[\"Nome\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"Nome da sua chave de API\"],\"J7w8lI\":[\"Nome do seu workspace\"],\"2T8KCk\":[\"Navegar para o próximo registro\"],\"veSA19\":[\"Navegar para a próxima versão\"],\"ZTEho+\":[\"Navegar para o próximo workflow\"],\"2tw9bo\":[\"Navegar para o registro anterior\"],\"I+Pm5V\":[\"Navegar para a versão anterior\"],\"QVUN3K\":[\"Navegar para o workflow anterior\"],\"isRobC\":[\"Novo\"],\"Kcr9Fr\":[\"Nova conta\"],\"o8MyXb\":[\"Nova chave\"],\"j313SZ\":[\"Nova Chave\"],\"hFxdey\":[\"Novo Objeto\"],\"7vhWI8\":[\"Nova Senha\"],\"BcCzLv\":[\"Novo registro\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"Novo Webhook\"],\"pwenQu\":[\"Nenhuma conta conectada\"],\"0uWxPM\":[\"Nenhuma execução de workflow ainda\"],\"AQCvCC\":[\"Nenhuma versão de workflow ainda\"],\"4wUkDk\":[\"Não vazio\"],\"W0i24j\":[\"Objeto\"],\"B3toQF\":[\"Objetos\"],\"KNz3EF\":[\"Fora do caminho comum\"],\"OV5wZZ\":[\"Aberto\"],\"0zpgxV\":[\"Opções\"],\"BzEFor\":[\"ou\"],\"/IX/7x\":[\"Outros\"],\"boJlGf\":[\"Página não encontrada\"],\"8ZsakT\":[\"Senha\"],\"BxQ79w\":[\"A senha foi atualizada\"],\"mi6Rel\":[\"O link de redefinição de senha foi enviado para o e-mail\"],\"SrVzRe\":[\"Porcentagem\"],\"yIK1GU\":[\"Porcentagem vazia\"],\"PWLd4c\":[\"Porcentagem não vazia\"],\"Bv3y5w\":[\"Destruir permanentemente o registro\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"Imagem\"],\"jEw0Mr\":[\"Digite um URL válido\"],\"6nsIo3\":[\"Digite \\\"\",[\"confirmationValue\"],\"\\\" para confirmar que deseja excluir esta chave de API. Esteja ciente de que qualquer script que use esta chave deixará de funcionar.\"],\"mFZTXr\":[\"Digite \",[\"confirmationText\"],\" para confirmar que deseja excluir este webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Português - Brasil\"],\"xtXHeo\":[\"Português - Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Prévia\"],\"LcET2C\":[\"Política de privacidade\"],\"vERlcd\":[\"Perfil\"],\"YJgRqq\":[\"Pseudo-inglês\"],\"ibPuCP\":[\"Ler documentação\"],\"v3xM25\":[\"Receber um e-mail com o link de atualização da senha\"],\"dSCufP\":[\"Seleção de registros\"],\"vpZcGd\":[\"Regenerar uma chave de API\"],\"Mwqo5m\":[\"Regenerar chave\"],\"D+Mv78\":[\"Regenerar chave\"],\"5icoS1\":[\"Lançamentos\"],\"t/YqKh\":[\"Remover\"],\"T/pF0Z\":[\"Remover dos favoritos\"],\"KbS2K9\":[\"Redefinir senha\"],\"1IWc1n\":[\"Redefinir para\"],\"kx0s+n\":[\"Resultados\"],\"5dJK4M\":[\"Funções\"],\"UX0N2y\":[\"Execute um workflow e retorne aqui para visualizar suas execuções\"],\"A1taO8\":[\"Pesquisar\"],\"8NBMeZ\":[\"Pesquisar '\",[\"commandMenuSearch\"],\"' com...\"],\"l1/uy2\":[\"Pesquisar um campo...\"],\"k7kp5/\":[\"Pesquisar um índice...\"],\"7taA9j\":[\"Pesquisar campos\"],\"ofuw3g\":[\"Pesquisar um objeto...\"],\"IMeaSJ\":[\"Pesquisar registros\"],\"a3LDKx\":[\"Segurança\"],\"QREcJS\":[\"Ver versão ativa\"],\"OpPn5Z\":[\"Ver execuções\"],\"EtyY4+\":[\"Ver versões\"],\"lYhPN0\":[\"Ver histórico de versões\"],\"xraglu\":[\"Selecione os eventos que deseja enviar para este endpoint\"],\"AXTJAW\":[\"Selecione seu idioma preferido\"],\"mjK8F3\":[\"Envie um e-mail de convite para sua equipe\"],\"yy5k7a\":[\"Painel de Administração do Servidor\"],\"V7fgiB\":[\"Defina a visibilidade do e-mail, gerencie sua lista de bloqueio e mais.\"],\"cx14rp\":[\"Defina o nome do seu domínio\"],\"tn41zE\":[\"Defina o nome do seu subdomínio\"],\"Tz0i8g\":[\"Configurações\"],\"Vy9kmk\":[\"Compartilhe este link para convidar usuários a participar do seu workspace\"],\"gWk8gY\":[\"Alterar o rótulo de um campo também deve alterar o nome da API?\"],\"5lWFkC\":[\"Fazer login\"],\"e+RpCP\":[\"Registrar-se\"],\"5v3IHX\":[\"Logon único (SSO)\"],\"6Uau97\":[\"Pular\"],\"f6Hub0\":[\"Classificar\"],\"65A04M\":[\"Espanhol\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdomínio\"],\"omhc+7\":[\"Subdomínio já ocupado\"],\"OlC/tU\":[\"O subdomínio não pode ter mais de 30 caracteres\"],\"ZETwlU\":[\"O subdomínio não pode ter menos de 3 caracteres\"],\"B5jRKH\":[\"A assinatura foi alterada para \",[\"to\"]],\"AxQiPW\":[\"Soma\"],\"XYLcNv\":[\"Suporte\"],\"9yk9d1\":[\"Alterar de \",[\"from\"]],\"qi74XZ\":[\"Alterar para \",[\"to\"]],\"L6Fg36\":[\"Alterar faturamento para \",[\"to\"]],\"AtzMpB\":[\"Sincronizar o rótulo do campo e o nome da API\"],\"E3AMmw\":[\"Configurações do sistema - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Configurações do sistema - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Termos de Serviço\"],\"NnH3pK\":[\"Teste\"],\"bU9B27\":[\"Teste de Workflow\"],\"2OUtmv\":[\"A descrição deste campo\"],\"VGZYbZ\":[\"O e-mail associado à sua conta\"],\"h8mvCd\":[\"O nome e o ícone deste campo\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"A página que você está procurando não existe mais ou nunca existiu. Vamos colocá-lo de volta no caminho certo\"],\"uWikAA\":[\"Os valores deste campo\"],\"+69KDk\":[\"Os valores deste campo devem ser únicos\"],\"ynfkhb\":[\"Ocorreu um erro ao atualizar a senha.\"],\"PmtLRf\":[\"Houve um problema\"],\"hqCwGc\":[\"Essa ação não pode ser desfeita. Isso excluirá permanentemente este usuário e o removerá de todas as suas atribuições.\"],\"gWGuHC\":[\"Essa ação não pode ser desfeita. Isso excluirá permanentemente todo o seu workspace. <0/> Digite seu e-mail para confirmar.\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"Formato de hora\"],\"aqMzDX\":[\"para mensal\"],\"WXXiXO\":[\"para anual\"],\"PiUt3N\":[\"Tipo de gatilho\"],\"IQ5pAL\":[\"O tipo de gatilho deve ser Manual - quando nenhum registro é selecionado\"],\"+zy2Nq\":[\"Tipo\"],\"U83IeL\":[\"Digite qualquer coisa\"],\"wSXm5S\":[\"Único\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"Contatos ilimitados\"],\"ONWvwQ\":[\"Carregar\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Usar como rascunho\"],\"oTTQsc\":[\"Use apenas letras, números e traços. Comece e termine com uma letra ou um número\"],\"c6uZUV\":[\"Use nossa API ou adicione seu primeiro \",[\"objectLabel\"],\" manualmente\"],\"7PzzBU\":[\"Usuário\"],\"IjyOjp\":[\"O usuário não está conectado\"],\"fXVIZq\":[\"Valores\"],\"KANz0G\":[\"Ver detalhes de faturamento\"],\"6n7jtr\":[\"Visualizar\"],\"id6ein\":[\"Suportamos seus PNGs, JPEGs e GIFs quadrados com menos de 10 MB\"],\"ZS7vYp\":[\"Enviaremos solicitações POST para este endpoint para cada novo evento\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Bem-vindo ao \",[\"workspaceName\"]],\"C51ilI\":[\"Quando a chave de API expirará.\"],\"leUubq\":[\"Quando a chave será desativada\"],\"wvyffT\":[\"O workflow não pode ser testado\"],\"pmUArF\":[\"Workspace\"],\"VicISP\":[\"Exclusão do Workspace\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"Insira uma descrição\"],\"3d1wCB\":[\"sim\"],\"zSkMV0\":[\"A cobrança anual será feita imediatamente.\"],\"XVnj6K\":[\"Seu saldo de crédito será utilizado para pagar as faturas mensais.\"],\"9ivpwk\":[\"Seu nome como será mostrado\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"Seu workspace será desativado\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/pt-PT.ts b/packages/twenty-front/src/locales/generated/pt-PT.ts index 997b8efb3..38abb91c8 100644 --- a/packages/twenty-front/src/locales/generated/pt-PT.ts +++ b/packages/twenty-front/src/locales/generated/pt-PT.ts @@ -1 +1 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" de \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" Chave API\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 execuções de nós de workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configurar campo\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"Abortar\"],\"uyJsf6\":[\"Sobre\"],\"AeXO77\":[\"Conta\"],\"nD0Y+a\":[\"Eliminação de conta\"],\"bPwFdf\":[\"Contas\"],\"FQBaXG\":[\"Ativar\"],\"tu8A/k\":[\"Ativar Workflow\"],\"F6pfE9\":[\"Ativo\"],\"Mue4oc\":[\"Chaves API ativas criadas por si ou pela sua equipa.\"],\"m16xKo\":[\"Adicionar\"],\"DpV70M\":[\"Adicionar Campo\"],\"dEO3Zx\":[\"Adicionar objeto\"],\"sgXUv+\":[\"Adicionar fornecedor de identidade SSO\"],\"5+ttxv\":[\"Adicionar à lista de bloqueio\"],\"pBsoKL\":[\"Adicionar aos favoritos\"],\"m2qDV8\":[\"Adicione o seu primeiro \",[\"objectLabel\"]],\"vLO+NG\":[\"Adicionado \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Todos\"],\"3saA7W\":[\"Todos (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Todos os papéis\"],\"GMx1K0\":[\"Permitir inícios de sessão através da funcionalidade de início de sessão único do Google.\"],\"dea+zy\":[\"Permitir inícios de sessão através da funcionalidade de início de sessão único da Microsoft.\"],\"wMg43c\":[\"Permitir o convite de novos utilizadores através da partilha de uma ligação de convite.\"],\"vHeVg5\":[\"Permitir que os utilizadores iniciem sessão com um e-mail e uma palavra-passe.\"],\"LG4K0m\":[\"Ocorreu um erro ao atualizar a palavra-passe\"],\"mJ6m4C\":[\"Descrição opcional\"],\"HZFm5R\":[\"e\"],\"0RqpZr\":[\"API e Webhooks\"],\"yRnk5W\":[\"Chave API\"],\"5h8ooz\":[\"Chaves API\"],\"kAtj+q\":[\"Nome da API\"],\"aAIQg2\":[\"Aparência\"],\"3iX0kh\":[\"Tem a certeza de que pretende alterar o seu intervalo de faturação?\"],\"nYD/Cq\":[\"Ascendente\"],\"rfYmIr\":[\"Atribuir papéis para especificar as permissões de acesso de cada membro\"],\"lxQ+5m\":[\"Atribuído a\"],\"H8QGSx\":[\"Pelo menos 8 caracteres.\"],\"Y7Dx6e\":[\"Pelo menos um método de autenticação deve estar ativado\"],\"P8fBlG\":[\"Autenticação\"],\"yIVrHZ\":[\"Autorizar\"],\"3uQmjD\":[\"Média\"],\"Dht9W3\":[\"Voltar ao conteúdo\"],\"R+w/Va\":[\"Faturação\"],\"K1172m\":[\"Lista de bloqueio\"],\"2yl5lQ\":[\"Marcar uma chamada\"],\"8Pfllj\":[\"Ao utilizar o Twenty, concorda com a\"],\"PmmvzS\":[\"Calcular\"],\"AjVXBS\":[\"Calendário\"],\"EUpfsd\":[\"Calendários\"],\"dEgA5A\":[\"Cancelar\"],\"0TllC8\":[\"Cancelar a qualquer momento\"],\"rRK/Lf\":[\"Cancelar plano\"],\"N6gPiD\":[\"Cancelar a sua subscrição\"],\"OfzMnb\":[\"Alterar \",[\"to\"]],\"VhMDMg\":[\"Alterar palavra-passe\"],\"SviKkE\":[\"Chinês - Simplificado\"],\"dzb4Ep\":[\"Chinês - Tradicional\"],\"JEFFOR\":[\"Escolher um objeto\"],\"KT6rEB\":[\"Escolha o seu fornecedor\"],\"9qP96p\":[\"Escolha o seu teste\"],\"yz7wBu\":[\"Fechar\"],\"+zUMwJ\":[\"Configurar uma ligação SSO\"],\"QTNsSm\":[\"Configure e personalize as suas preferências de calendário.\"],\"aGwm+D\":[\"Configurar a forma como as datas são apresentadas na aplicação\"],\"Bh4GBD\":[\"Configure as definições de e-mail e calendário.\"],\"D8ATlr\":[\"Ligar uma nova conta ao seu espaço de trabalho\"],\"Zgi9Fd\":[\"Ligar ao Google\"],\"IOfqM8\":[\"Ligar à Microsoft\"],\"9TzudL\":[\"Contas ligadas\"],\"M73whl\":[\"Contexto\"],\"xGVfLh\":[\"Continuar\"],\"RvVi9c\":[\"Continuar com o e-mail\"],\"oZyG4C\":[\"Continuar com o Google\"],\"ztoybH\":[\"Continuar com a Microsoft\"],\"CcGOj+\":[\"Copiloto\"],\"7eVkEH\":[\"Copiar a ligação do convite\"],\"Ej5euX\":[\"Copiar esta chave, pois não voltará a ser visível\"],\"wBMjJ2\":[\"Contagem\"],\"EkZfen\":[\"Contar tudo\"],\"vQJINq\":[\"Contar vazios\"],\"DzRsDJ\":[\"Contar não vazios\"],\"9FZBbf\":[\"Contar valores únicos\"],\"zNoOC2\":[\"Crie um workflow e volte aqui para ver as suas versões\"],\"uXGLuq\":[\"Criar chave API\"],\"d0DCww\":[\"Criar novo registo\"],\"dkAPxi\":[\"Criar Webhook\"],\"8skTDV\":[\"Objetos personalizados\"],\"qt+EaC\":[\"Personalize os campos disponíveis nas vistas \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personalizar domínio\"],\"bCJa9l\":[\"Personalize a segurança do seu espaço de trabalho\"],\"Zz6Cxn\":[\"Zona de perigo\"],\"5cNMFz\":[\"Modelo de dados\"],\"r+cVRP\":[\"Tipo de dados\"],\"mYGY3B\":[\"Data\"],\"Ud9zHv\":[\"Data e hora\"],\"5y3O+A\":[\"Desativar\"],\"qk4i22\":[\"Desativar \\\"Sincronizar etiquetas de objetos e nomes de API\\\" para definir um nome de API personalizado\"],\"gexAq8\":[\"Desativar este campo\"],\"4tpC8V\":[\"Desativar Workflow\"],\"Y2ImVJ\":[\"Defina o nome e a descrição do seu objeto\"],\"cnGeoo\":[\"Eliminar\"],\"ZDGm40\":[\"Eliminar conta\"],\"gAz0S5\":[\"Eliminar conta e todos os dados associados\"],\"hGfWDm\":[\"Eliminar chave API\"],\"4dpwsE\":[\"Eliminar registo\"],\"kf0A63\":[\"Eliminar registos\"],\"T6S2Ns\":[\"Eliminar esta integração\"],\"snMaH4\":[\"Eliminar webhook\"],\"kYu0eF\":[\"Eliminar espaço de trabalho\"],\"mk2Ygs\":[\"Eliminar todo o seu espaço de trabalho\"],\"Cko536\":[\"Descendente\"],\"Nu4oKW\":[\"Descrição\"],\"2xxBws\":[\"Destruir\"],\"n+SX4g\":[\"Programadores\"],\"zAg2B9\":[\"Descartar rascunho\"],\"i66xz9\":[\"Exibir como data relativa\"],\"EoKe5U\":[\"Domínio\"],\"QVVmxi\":[\"Ex.: integração de backoffice\"],\"tOkc8o\":[\"Mais antigo\"],\"JTbQuO\":[\"Data mais antiga\"],\"v+uKyy\":[\"Editar intervalo de faturação\"],\"h2KoTu\":[\"Editar método de pagamento, ver as suas faturas e muito mais\"],\"6o1M/Q\":[\"Edite o nome do seu subdomínio ou defina um domínio personalizado.\"],\"O3oNi5\":[\"E-mail\"],\"lfQsvW\":[\"Integração de e-mail\"],\"QT/Wo7\":[\"O e-mail ou domínio já está na lista de bloqueio\"],\"BXEcos\":[\"E-mails\"],\"eXoH4Q\":[\"empregados\"],\"gqv5ZL\":[\"Funcionários\"],\"N2S1rs\":[\"Vazio\"],\"T3juzf\":[\"URL do Endpoint\"],\"lYGfRP\":[\"Inglês\"],\"/bfFKe\":[\"Desfrute de um período experimental gratuito de \",[\"withCreditCardTrialPeriodDuration\"],\" dias\"],\"GpB8YV\":[\"Enterprise\"],\"c3qGJX\":[\"Erro ao eliminar a chave API: \",[\"err\"]],\"bj7nh3\":[\"Erro ao regenerar a chave API: \",[\"err\"]],\"VSQxWH\":[\"Erro ao mudar a subscrição \",[\"to\"],\".\"],\"JLxMta\":[\"Estabeleça endpoints Webhook para notificações de eventos assíncronos.\"],\"cIgBjB\":[\"Excluir as seguintes pessoas e domínios da minha sincronização de e-mail\"],\"fV7V51\":[\"Objetos existentes\"],\"IZ4o2e\":[\"Sair das Definições\"],\"tXGQvS\":[\"O nó selecionado deve ser um nó de etapa de criação.\"],\"bKBhgb\":[\"Experiência\"],\"LxRNPw\":[\"Expiração\"],\"SkXfL0\":[\"Data de Expiração\"],\"i9qiyR\":[\"Expira em\"],\"GS+Mus\":[\"Exportar\"],\"ep2rbf\":[\"Exportar registos\"],\"q46CjD\":[\"Exportar para PDF\"],\"DaGxE0\":[\"Exportar vista\"],\"X9kySA\":[\"Favoritos\"],\"zXgopL\":[\"Tipo de campo\"],\"vF68cg\":[\"Campos\"],\"3w/aqw\":[\"Contagem de Campos\"],\"o7J4JM\":[\"Filtro\"],\"cSev+j\":[\"Filtros\"],\"glx6on\":[\"Esqueceu-se da sua palavra-passe?\"],\"nLC6tu\":[\"Francês\"],\"aTieE0\":[\"de mensal para anual\"],\"K04lE5\":[\"de anual para mensal\"],\"scmRyR\":[\"Acesso total\"],\"xANKBj\":[\"Funções\"],\"Weq9zb\":[\"Geral\"],\"DDcvSo\":[\"Alemão\"],\"NXEW3h\":[\"Tire o máximo partido do seu espaço de trabalho convidando a sua equipa.\"],\"zSGbaR\":[\"Obtenha a sua subscrição\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Conceda ao suporte do Twenty acesso temporário ao seu espaço de trabalho para que possamos solucionar problemas ou recuperar conteúdo em seu nome. Pode revogar o acesso a qualquer momento.\"],\"vLyv1R\":[\"Esconder\"],\"XTWO+W\":[\"Ícone e Nome\"],\"sJGljQ\":[\"Identificador\"],\"j843N3\":[\"Se perdeu esta chave, pode regenerá-la, mas tenha em atenção que qualquer script que utilize esta chave terá de ser atualizado. Digite \\\"\",[\"confirmationValue\"],\"\\\" para confirmar.\"],\"NoNwIX\":[\"Inativo\"],\"pZ/USH\":[\"Índices\"],\"JE2tjr\":[\"A entrada deve estar em camel case e não pode começar com um número\"],\"AwUsnG\":[\"Instâncias\"],\"nbfdhU\":[\"Integrações\"],\"NtFk/Z\":[\"Fornecedor de autenticação inválido\"],\"B2Tpo0\":[\"E-mail inválido\"],\"/m52AE\":[\"E-mail ou domínio inválido\"],\"QdoUFL\":[\"Valores de formulário inválidos\"],\"0M8+El\":[\"Convidar por e-mail\"],\"PWIq/W\":[\"Convidar por link\"],\"3athPG\":[\"Convidar por Link\"],\"5IfmKA\":[\"Link de convite enviado para endereços de e-mail\"],\"d+Y+rP\":[\"Convide a sua equipa\"],\"Lj7sBL\":[\"Italiano\"],\"dFtidv\":[\"Japonês\"],\"h6S9Yz\":[\"Coreano\"],\"zrpwCd\":[\"Laboratório\"],\"vXIe7J\":[\"Língua\"],\"wL3cK8\":[\"Mais recente\"],\"Kcjbmz\":[\"Data mais recente\"],\"pQjjYo\":[\"Link copiado para a área de transferência\"],\"FgAxTj\":[\"Terminar sessão\"],\"nOhz3x\":[\"Terminar sessão\"],\"T6YjCk\":[\"Gerir Membros\"],\"4cjU2u\":[\"Gerir os membros do seu espaço aqui\"],\"FyFNsd\":[\"Gerir as suas contas de internet.\"],\"36kYu0\":[\"Gerir a sua subscrição\"],\"3Sdni6\":[\"Marcar como concluído\"],\"CK1KXz\":[\"Máximo\"],\"wlQNTg\":[\"Membros\"],\"eTUF28\":[\"Mínimo\"],\"3Siwmw\":[\"Mais opções\"],\"iSLA/r\":[\"Mover para a esquerda\"],\"Ubl2by\":[\"Mover para a direita\"],\"6YtxFj\":[\"Nome\"],\"z+6jaZ\":[\"Nome da sua chave API\"],\"J7w8lI\":[\"Nome do seu espaço de trabalho\"],\"2T8KCk\":[\"Navegar para o próximo registo\"],\"veSA19\":[\"Navegar para a próxima versão\"],\"ZTEho+\":[\"Navegar para o próximo workflow\"],\"2tw9bo\":[\"Navegar para o registo anterior\"],\"I+Pm5V\":[\"Navegar para a versão anterior\"],\"QVUN3K\":[\"Navegar para o workflow anterior\"],\"isRobC\":[\"Novo\"],\"Kcr9Fr\":[\"Nova conta\"],\"o8MyXb\":[\"Nova chave\"],\"j313SZ\":[\"Nova Chave\"],\"hFxdey\":[\"Novo Objeto\"],\"7vhWI8\":[\"Nova Palavra-passe\"],\"BcCzLv\":[\"Novo registo\"],\"2lmOC5\":[\"Nova Função\"],\"U1DAok\":[\"Novo Webhook\"],\"pwenQu\":[\"Nenhuma conta conectada\"],\"0uWxPM\":[\"Ainda não há execuções de workflow\"],\"AQCvCC\":[\"Ainda não há versões de workflow\"],\"4wUkDk\":[\"Não vazio\"],\"W0i24j\":[\"Objeto\"],\"B3toQF\":[\"Objetos\"],\"KNz3EF\":[\"Fora do caminho comum\"],\"OV5wZZ\":[\"Aberto\"],\"0zpgxV\":[\"Opções\"],\"BzEFor\":[\"ou\"],\"/IX/7x\":[\"Outros\"],\"boJlGf\":[\"Página não encontrada\"],\"8ZsakT\":[\"Palavra-passe\"],\"BxQ79w\":[\"A palavra-passe foi atualizada\"],\"mi6Rel\":[\"O link de reposição da palavra-passe foi enviado para o e-mail\"],\"SrVzRe\":[\"Percentagem\"],\"yIK1GU\":[\"Percentagem de vazio\"],\"PWLd4c\":[\"Percentagem não vazia\"],\"Bv3y5w\":[\"Destruir permanentemente o registo\"],\"N0+GsR\":[\"Imagem\"],\"jEw0Mr\":[\"Introduza um URL válido\"],\"6nsIo3\":[\"Digite \\\"\",[\"confirmationValue\"],\"\\\" para confirmar que deseja excluir esta chave API. Tenha em atenção que qualquer script que utilize esta chave deixará de funcionar.\"],\"mFZTXr\":[\"Digite \",[\"confirmationText\"],\" para confirmar que deseja eliminar este webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Português — Brasil\"],\"xtXHeo\":[\"Português — Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Pré-visualização\"],\"LcET2C\":[\"Política de Privacidade\"],\"vERlcd\":[\"Perfil\"],\"YJgRqq\":[\"Pseudo-inglês\"],\"ibPuCP\":[\"Ler a documentação\"],\"v3xM25\":[\"Receber um e-mail com um link para atualização da palavra-passe\"],\"dSCufP\":[\"Seleção de registos\"],\"vpZcGd\":[\"Regenerar uma chave API\"],\"Mwqo5m\":[\"Regenerar chave\"],\"D+Mv78\":[\"Regenerar chave\"],\"5icoS1\":[\"Lançamentos\"],\"t/YqKh\":[\"Remover\"],\"T/pF0Z\":[\"Remover dos favoritos\"],\"KbS2K9\":[\"Repor a palavra-passe\"],\"1IWc1n\":[\"Redefinir para\"],\"kx0s+n\":[\"Resultados\"],\"5dJK4M\":[\"Funções\"],\"UX0N2y\":[\"Execute um workflow e volte aqui para ver as suas execuções\"],\"A1taO8\":[\"Pesquisar\"],\"8NBMeZ\":[\"Pesquisar '\",[\"commandMenuSearch\"],\"' com...\"],\"l1/uy2\":[\"Pesquisar um campo...\"],\"k7kp5/\":[\"Pesquisar um índice...\"],\"7taA9j\":[\"Pesquisar campos\"],\"ofuw3g\":[\"Pesquisar um objeto...\"],\"IMeaSJ\":[\"Pesquisar registos\"],\"a3LDKx\":[\"Segurança\"],\"QREcJS\":[\"Ver versão ativa\"],\"OpPn5Z\":[\"Ver execuções\"],\"EtyY4+\":[\"Ver versões\"],\"lYhPN0\":[\"Ver histórico de versões\"],\"xraglu\":[\"Selecione os eventos que deseja enviar para este endpoint\"],\"AXTJAW\":[\"Selecione a sua língua preferida\"],\"mjK8F3\":[\"Enviar um convite por e-mail à sua equipa\"],\"yy5k7a\":[\"Painel de Administração do Servidor\"],\"V7fgiB\":[\"Defina a visibilidade do e-mail, gere a sua lista de bloqueio e muito mais.\"],\"cx14rp\":[\"Defina o nome do seu domínio\"],\"tn41zE\":[\"Defina o nome do seu subdomínio\"],\"Tz0i8g\":[\"Definições\"],\"Vy9kmk\":[\"Partilhe este link para convidar utilizadores a juntarem-se ao seu espaço de trabalho\"],\"gWk8gY\":[\"Alterar o rótulo de um campo deve também alterar o nome da API?\"],\"5lWFkC\":[\"Iniciar sessão\"],\"e+RpCP\":[\"Inscrever-se\"],\"5v3IHX\":[\"Início de sessão único (SSO)\"],\"6Uau97\":[\"Saltar\"],\"f6Hub0\":[\"Ordenar\"],\"65A04M\":[\"Espanhol\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdomínio\"],\"omhc+7\":[\"Subdomínio já ocupado\"],\"OlC/tU\":[\"O subdomínio não pode ter mais de 30 caracteres\"],\"ZETwlU\":[\"O subdomínio não pode ter menos de 3 caracteres\"],\"B5jRKH\":[\"A subscrição foi alterada para \",[\"to\"]],\"AxQiPW\":[\"Soma\"],\"XYLcNv\":[\"Suporte\"],\"9yk9d1\":[\"Mudar de \",[\"from\"]],\"qi74XZ\":[\"Mudar para \",[\"to\"]],\"L6Fg36\":[\"Mudar faturação para \",[\"to\"]],\"AtzMpB\":[\"Sincronizar o rótulo do campo e o nome da API\"],\"E3AMmw\":[\"Definições do Sistema - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Definições do Sistema - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Termos de Serviço\"],\"NnH3pK\":[\"Teste\"],\"bU9B27\":[\"Testar Workflow\"],\"2OUtmv\":[\"A descrição deste campo\"],\"VGZYbZ\":[\"O e-mail associado à sua conta\"],\"h8mvCd\":[\"O nome e o ícone deste campo\"],\"L97sPr\":[\"A página que procura não existe ou nunca existiu. Vamos pô-lo de volta no caminho certo\"],\"uWikAA\":[\"Os valores deste campo\"],\"+69KDk\":[\"Os valores deste campo devem ser únicos\"],\"ynfkhb\":[\"Ocorreu um erro ao atualizar a palavra-passe.\"],\"PmtLRf\":[\"Houve um problema\"],\"hqCwGc\":[\"Esta ação não pode ser desfeita. Isto eliminará permanentemente este utilizador e removê-lo-á de todas as suas atribuições.\"],\"gWGuHC\":[\"Esta ação não pode ser desfeita. Isto eliminará permanentemente todo o seu espaço de trabalho. <0/> Por favor, digite o seu e-mail para confirmar.\"],\"n9nSNJ\":[\"Formato da hora\"],\"aqMzDX\":[\"para mensal\"],\"WXXiXO\":[\"para anual\"],\"PiUt3N\":[\"Tipo de Trigger\"],\"IQ5pAL\":[\"O tipo de trigger deve ser Manual - quando nenhum registo está selecionado\"],\"+zy2Nq\":[\"Tipo\"],\"U83IeL\":[\"Digite qualquer coisa\"],\"wSXm5S\":[\"Único\"],\"GQCXQS\":[\"Contactos ilimitados\"],\"ONWvwQ\":[\"Carregar\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Usar como rascunho\"],\"oTTQsc\":[\"Utilize apenas letras, números e traços. Comece e termine com uma letra ou um número\"],\"c6uZUV\":[\"Use a nossa API ou adicione o seu primeiro \",[\"objectLabel\"],\" manualmente\"],\"7PzzBU\":[\"Utilizador\"],\"IjyOjp\":[\"O utilizador não está autenticado\"],\"fXVIZq\":[\"Valores\"],\"KANz0G\":[\"Ver detalhes de faturação\"],\"6n7jtr\":[\"Visualizar\"],\"id6ein\":[\"Suportamos PNGs, JPEGs e GIFs quadrados até 10MB\"],\"ZS7vYp\":[\"Enviaremos pedidos POST para este endpoint para cada novo evento\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Bem-vindo ao \",[\"workspaceName\"]],\"C51ilI\":[\"Quando a chave da API irá expirar.\"],\"leUubq\":[\"Quando a chave será desativada\"],\"wvyffT\":[\"O workflow não pode ser testado\"],\"pmUArF\":[\"Espaço de trabalho\"],\"VicISP\":[\"Eliminação do espaço de trabalho\"],\"Q9pNST\":[\"Escreva uma descrição\"],\"3d1wCB\":[\"sim\"],\"zSkMV0\":[\"Ser-lhe-á cobrado imediatamente o valor total do ano.\"],\"XVnj6K\":[\"O seu saldo de crédito será utilizado para pagar as faturas mensais.\"],\"9ivpwk\":[\"O seu nome como será exibido\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"O seu espaço de trabalho será desativado\"]}")as Messages; \ No newline at end of file +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" de \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" Chave API\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1 000 execuções de nós de workflow\"],\"4EdXYs\":[\"12h (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. Configurar campo\"],\"QsMprd\":[\"24h (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"Abortar\"],\"uyJsf6\":[\"Sobre\"],\"AeXO77\":[\"Conta\"],\"nD0Y+a\":[\"Eliminação de conta\"],\"bPwFdf\":[\"Contas\"],\"FQBaXG\":[\"Ativar\"],\"tu8A/k\":[\"Ativar Workflow\"],\"F6pfE9\":[\"Ativo\"],\"Mue4oc\":[\"Chaves API ativas criadas por si ou pela sua equipa.\"],\"m16xKo\":[\"Adicionar\"],\"DpV70M\":[\"Adicionar Campo\"],\"dEO3Zx\":[\"Adicionar objeto\"],\"sgXUv+\":[\"Adicionar fornecedor de identidade SSO\"],\"5+ttxv\":[\"Adicionar à lista de bloqueio\"],\"pBsoKL\":[\"Adicionar aos favoritos\"],\"m2qDV8\":[\"Adicione o seu primeiro \",[\"objectLabel\"]],\"vLO+NG\":[\"Adicionado \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"Todos\"],\"3saA7W\":[\"Todos (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"Todos os papéis\"],\"GMx1K0\":[\"Permitir inícios de sessão através da funcionalidade de início de sessão único do Google.\"],\"dea+zy\":[\"Permitir inícios de sessão através da funcionalidade de início de sessão único da Microsoft.\"],\"wMg43c\":[\"Permitir o convite de novos utilizadores através da partilha de uma ligação de convite.\"],\"vHeVg5\":[\"Permitir que os utilizadores iniciem sessão com um e-mail e uma palavra-passe.\"],\"LG4K0m\":[\"Ocorreu um erro ao atualizar a palavra-passe\"],\"mJ6m4C\":[\"Descrição opcional\"],\"HZFm5R\":[\"e\"],\"0RqpZr\":[\"API e Webhooks\"],\"yRnk5W\":[\"Chave API\"],\"5h8ooz\":[\"Chaves API\"],\"kAtj+q\":[\"Nome da API\"],\"aAIQg2\":[\"Aparência\"],\"3iX0kh\":[\"Tem a certeza de que pretende alterar o seu intervalo de faturação?\"],\"nYD/Cq\":[\"Ascendente\"],\"rfYmIr\":[\"Atribuir papéis para especificar as permissões de acesso de cada membro\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"Atribuído a\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"Pelo menos 8 caracteres.\"],\"Y7Dx6e\":[\"Pelo menos um método de autenticação deve estar ativado\"],\"P8fBlG\":[\"Autenticação\"],\"yIVrHZ\":[\"Autorizar\"],\"3uQmjD\":[\"Média\"],\"Dht9W3\":[\"Voltar ao conteúdo\"],\"R+w/Va\":[\"Faturação\"],\"K1172m\":[\"Lista de bloqueio\"],\"2yl5lQ\":[\"Marcar uma chamada\"],\"8Pfllj\":[\"Ao utilizar o Twenty, concorda com a\"],\"PmmvzS\":[\"Calcular\"],\"AjVXBS\":[\"Calendário\"],\"EUpfsd\":[\"Calendários\"],\"dEgA5A\":[\"Cancelar\"],\"0TllC8\":[\"Cancelar a qualquer momento\"],\"rRK/Lf\":[\"Cancelar plano\"],\"N6gPiD\":[\"Cancelar a sua subscrição\"],\"OfzMnb\":[\"Alterar \",[\"to\"]],\"VhMDMg\":[\"Alterar palavra-passe\"],\"SviKkE\":[\"Chinês - Simplificado\"],\"dzb4Ep\":[\"Chinês - Tradicional\"],\"JEFFOR\":[\"Escolher um objeto\"],\"KT6rEB\":[\"Escolha o seu fornecedor\"],\"9qP96p\":[\"Escolha o seu teste\"],\"yz7wBu\":[\"Fechar\"],\"+zUMwJ\":[\"Configurar uma ligação SSO\"],\"QTNsSm\":[\"Configure e personalize as suas preferências de calendário.\"],\"aGwm+D\":[\"Configurar a forma como as datas são apresentadas na aplicação\"],\"Bh4GBD\":[\"Configure as definições de e-mail e calendário.\"],\"D8ATlr\":[\"Ligar uma nova conta ao seu espaço de trabalho\"],\"Zgi9Fd\":[\"Ligar ao Google\"],\"IOfqM8\":[\"Ligar à Microsoft\"],\"9TzudL\":[\"Contas ligadas\"],\"M73whl\":[\"Contexto\"],\"xGVfLh\":[\"Continuar\"],\"RvVi9c\":[\"Continuar com o e-mail\"],\"oZyG4C\":[\"Continuar com o Google\"],\"ztoybH\":[\"Continuar com a Microsoft\"],\"CcGOj+\":[\"Copiloto\"],\"7eVkEH\":[\"Copiar a ligação do convite\"],\"Ej5euX\":[\"Copiar esta chave, pois não voltará a ser visível\"],\"wBMjJ2\":[\"Contagem\"],\"EkZfen\":[\"Contar tudo\"],\"vQJINq\":[\"Contar vazios\"],\"DzRsDJ\":[\"Contar não vazios\"],\"9FZBbf\":[\"Contar valores únicos\"],\"zNoOC2\":[\"Crie um workflow e volte aqui para ver as suas versões\"],\"uXGLuq\":[\"Criar chave API\"],\"d0DCww\":[\"Criar novo registo\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"Criar Webhook\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"Objetos personalizados\"],\"qt+EaC\":[\"Personalize os campos disponíveis nas vistas \",[\"objectLabelSingular\"],\".\"],\"CMhr4u\":[\"Personalizar domínio\"],\"bCJa9l\":[\"Personalize a segurança do seu espaço de trabalho\"],\"Zz6Cxn\":[\"Zona de perigo\"],\"5cNMFz\":[\"Modelo de dados\"],\"r+cVRP\":[\"Tipo de dados\"],\"mYGY3B\":[\"Data\"],\"Ud9zHv\":[\"Data e hora\"],\"5y3O+A\":[\"Desativar\"],\"qk4i22\":[\"Desativar \\\"Sincronizar etiquetas de objetos e nomes de API\\\" para definir um nome de API personalizado\"],\"gexAq8\":[\"Desativar este campo\"],\"4tpC8V\":[\"Desativar Workflow\"],\"Y2ImVJ\":[\"Defina o nome e a descrição do seu objeto\"],\"cnGeoo\":[\"Eliminar\"],\"ZDGm40\":[\"Eliminar conta\"],\"gAz0S5\":[\"Eliminar conta e todos os dados associados\"],\"hGfWDm\":[\"Eliminar chave API\"],\"4dpwsE\":[\"Eliminar registo\"],\"kf0A63\":[\"Eliminar registos\"],\"T6S2Ns\":[\"Eliminar esta integração\"],\"snMaH4\":[\"Eliminar webhook\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"Eliminar espaço de trabalho\"],\"mk2Ygs\":[\"Eliminar todo o seu espaço de trabalho\"],\"Cko536\":[\"Descendente\"],\"Nu4oKW\":[\"Descrição\"],\"2xxBws\":[\"Destruir\"],\"n+SX4g\":[\"Programadores\"],\"zAg2B9\":[\"Descartar rascunho\"],\"i66xz9\":[\"Exibir como data relativa\"],\"EoKe5U\":[\"Domínio\"],\"QVVmxi\":[\"Ex.: integração de backoffice\"],\"tOkc8o\":[\"Mais antigo\"],\"JTbQuO\":[\"Data mais antiga\"],\"v+uKyy\":[\"Editar intervalo de faturação\"],\"h2KoTu\":[\"Editar método de pagamento, ver as suas faturas e muito mais\"],\"6o1M/Q\":[\"Edite o nome do seu subdomínio ou defina um domínio personalizado.\"],\"O3oNi5\":[\"E-mail\"],\"lfQsvW\":[\"Integração de e-mail\"],\"QT/Wo7\":[\"O e-mail ou domínio já está na lista de bloqueio\"],\"BXEcos\":[\"E-mails\"],\"eXoH4Q\":[\"empregados\"],\"gqv5ZL\":[\"Funcionários\"],\"N2S1rs\":[\"Vazio\"],\"T3juzf\":[\"URL do Endpoint\"],\"lYGfRP\":[\"Inglês\"],\"/bfFKe\":[\"Desfrute de um período experimental gratuito de \",[\"withCreditCardTrialPeriodDuration\"],\" dias\"],\"GpB8YV\":[\"Enterprise\"],\"c3qGJX\":[\"Erro ao eliminar a chave API: \",[\"err\"]],\"bj7nh3\":[\"Erro ao regenerar a chave API: \",[\"err\"]],\"VSQxWH\":[\"Erro ao mudar a subscrição \",[\"to\"],\".\"],\"JLxMta\":[\"Estabeleça endpoints Webhook para notificações de eventos assíncronos.\"],\"cIgBjB\":[\"Excluir as seguintes pessoas e domínios da minha sincronização de e-mail\"],\"fV7V51\":[\"Objetos existentes\"],\"IZ4o2e\":[\"Sair das Definições\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"Experiência\"],\"LxRNPw\":[\"Expiração\"],\"SkXfL0\":[\"Data de Expiração\"],\"i9qiyR\":[\"Expira em\"],\"GS+Mus\":[\"Exportar\"],\"ep2rbf\":[\"Exportar registos\"],\"q46CjD\":[\"Exportar para PDF\"],\"DaGxE0\":[\"Exportar vista\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"Favoritos\"],\"zXgopL\":[\"Tipo de campo\"],\"vF68cg\":[\"Campos\"],\"3w/aqw\":[\"Contagem de Campos\"],\"o7J4JM\":[\"Filtro\"],\"cSev+j\":[\"Filtros\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"Esqueceu-se da sua palavra-passe?\"],\"nLC6tu\":[\"Francês\"],\"aTieE0\":[\"de mensal para anual\"],\"K04lE5\":[\"de anual para mensal\"],\"scmRyR\":[\"Acesso total\"],\"xANKBj\":[\"Funções\"],\"Weq9zb\":[\"Geral\"],\"DDcvSo\":[\"Alemão\"],\"NXEW3h\":[\"Tire o máximo partido do seu espaço de trabalho convidando a sua equipa.\"],\"zSGbaR\":[\"Obtenha a sua subscrição\"],\"2GT3Hf\":[\"Global\"],\"hWp1MY\":[\"Conceda ao suporte do Twenty acesso temporário ao seu espaço de trabalho para que possamos solucionar problemas ou recuperar conteúdo em seu nome. Pode revogar o acesso a qualquer momento.\"],\"vLyv1R\":[\"Esconder\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"Ícone e Nome\"],\"sJGljQ\":[\"Identificador\"],\"j843N3\":[\"Se perdeu esta chave, pode regenerá-la, mas tenha em atenção que qualquer script que utilize esta chave terá de ser atualizado. Digite \\\"\",[\"confirmationValue\"],\"\\\" para confirmar.\"],\"NoNwIX\":[\"Inativo\"],\"pZ/USH\":[\"Índices\"],\"JE2tjr\":[\"A entrada deve estar em camel case e não pode começar com um número\"],\"AwUsnG\":[\"Instâncias\"],\"nbfdhU\":[\"Integrações\"],\"NtFk/Z\":[\"Fornecedor de autenticação inválido\"],\"B2Tpo0\":[\"E-mail inválido\"],\"/m52AE\":[\"E-mail ou domínio inválido\"],\"QdoUFL\":[\"Valores de formulário inválidos\"],\"0M8+El\":[\"Convidar por e-mail\"],\"PWIq/W\":[\"Convidar por link\"],\"3athPG\":[\"Convidar por Link\"],\"5IfmKA\":[\"Link de convite enviado para endereços de e-mail\"],\"d+Y+rP\":[\"Convide a sua equipa\"],\"Lj7sBL\":[\"Italiano\"],\"dFtidv\":[\"Japonês\"],\"h6S9Yz\":[\"Coreano\"],\"zrpwCd\":[\"Laboratório\"],\"vXIe7J\":[\"Língua\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"Mais recente\"],\"Kcjbmz\":[\"Data mais recente\"],\"pQjjYo\":[\"Link copiado para a área de transferência\"],\"FgAxTj\":[\"Terminar sessão\"],\"nOhz3x\":[\"Terminar sessão\"],\"T6YjCk\":[\"Gerir Membros\"],\"4cjU2u\":[\"Gerir os membros do seu espaço aqui\"],\"FyFNsd\":[\"Gerir as suas contas de internet.\"],\"36kYu0\":[\"Gerir a sua subscrição\"],\"3Sdni6\":[\"Marcar como concluído\"],\"CK1KXz\":[\"Máximo\"],\"wlQNTg\":[\"Membros\"],\"eTUF28\":[\"Mínimo\"],\"3Siwmw\":[\"Mais opções\"],\"iSLA/r\":[\"Mover para a esquerda\"],\"Ubl2by\":[\"Mover para a direita\"],\"6YtxFj\":[\"Nome\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"Nome da sua chave API\"],\"J7w8lI\":[\"Nome do seu espaço de trabalho\"],\"2T8KCk\":[\"Navegar para o próximo registo\"],\"veSA19\":[\"Navegar para a próxima versão\"],\"ZTEho+\":[\"Navegar para o próximo workflow\"],\"2tw9bo\":[\"Navegar para o registo anterior\"],\"I+Pm5V\":[\"Navegar para a versão anterior\"],\"QVUN3K\":[\"Navegar para o workflow anterior\"],\"isRobC\":[\"Novo\"],\"Kcr9Fr\":[\"Nova conta\"],\"o8MyXb\":[\"Nova chave\"],\"j313SZ\":[\"Nova Chave\"],\"hFxdey\":[\"Novo Objeto\"],\"7vhWI8\":[\"Nova Palavra-passe\"],\"BcCzLv\":[\"Novo registo\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"Novo Webhook\"],\"pwenQu\":[\"Nenhuma conta conectada\"],\"0uWxPM\":[\"Ainda não há execuções de workflow\"],\"AQCvCC\":[\"Ainda não há versões de workflow\"],\"4wUkDk\":[\"Não vazio\"],\"W0i24j\":[\"Objeto\"],\"B3toQF\":[\"Objetos\"],\"KNz3EF\":[\"Fora do caminho comum\"],\"OV5wZZ\":[\"Aberto\"],\"0zpgxV\":[\"Opções\"],\"BzEFor\":[\"ou\"],\"/IX/7x\":[\"Outros\"],\"boJlGf\":[\"Página não encontrada\"],\"8ZsakT\":[\"Palavra-passe\"],\"BxQ79w\":[\"A palavra-passe foi atualizada\"],\"mi6Rel\":[\"O link de reposição da palavra-passe foi enviado para o e-mail\"],\"SrVzRe\":[\"Percentagem\"],\"yIK1GU\":[\"Percentagem de vazio\"],\"PWLd4c\":[\"Percentagem não vazia\"],\"Bv3y5w\":[\"Destruir permanentemente o registo\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"Imagem\"],\"jEw0Mr\":[\"Introduza um URL válido\"],\"6nsIo3\":[\"Digite \\\"\",[\"confirmationValue\"],\"\\\" para confirmar que deseja excluir esta chave API. Tenha em atenção que qualquer script que utilize esta chave deixará de funcionar.\"],\"mFZTXr\":[\"Digite \",[\"confirmationText\"],\" para confirmar que deseja eliminar este webhook.\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"Português — Brasil\"],\"xtXHeo\":[\"Português — Portugal\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"Pré-visualização\"],\"LcET2C\":[\"Política de Privacidade\"],\"vERlcd\":[\"Perfil\"],\"YJgRqq\":[\"Pseudo-inglês\"],\"ibPuCP\":[\"Ler a documentação\"],\"v3xM25\":[\"Receber um e-mail com um link para atualização da palavra-passe\"],\"dSCufP\":[\"Seleção de registos\"],\"vpZcGd\":[\"Regenerar uma chave API\"],\"Mwqo5m\":[\"Regenerar chave\"],\"D+Mv78\":[\"Regenerar chave\"],\"5icoS1\":[\"Lançamentos\"],\"t/YqKh\":[\"Remover\"],\"T/pF0Z\":[\"Remover dos favoritos\"],\"KbS2K9\":[\"Repor a palavra-passe\"],\"1IWc1n\":[\"Redefinir para\"],\"kx0s+n\":[\"Resultados\"],\"5dJK4M\":[\"Funções\"],\"UX0N2y\":[\"Execute um workflow e volte aqui para ver as suas execuções\"],\"A1taO8\":[\"Pesquisar\"],\"8NBMeZ\":[\"Pesquisar '\",[\"commandMenuSearch\"],\"' com...\"],\"l1/uy2\":[\"Pesquisar um campo...\"],\"k7kp5/\":[\"Pesquisar um índice...\"],\"7taA9j\":[\"Pesquisar campos\"],\"ofuw3g\":[\"Pesquisar um objeto...\"],\"IMeaSJ\":[\"Pesquisar registos\"],\"a3LDKx\":[\"Segurança\"],\"QREcJS\":[\"Ver versão ativa\"],\"OpPn5Z\":[\"Ver execuções\"],\"EtyY4+\":[\"Ver versões\"],\"lYhPN0\":[\"Ver histórico de versões\"],\"xraglu\":[\"Selecione os eventos que deseja enviar para este endpoint\"],\"AXTJAW\":[\"Selecione a sua língua preferida\"],\"mjK8F3\":[\"Enviar um convite por e-mail à sua equipa\"],\"yy5k7a\":[\"Painel de Administração do Servidor\"],\"V7fgiB\":[\"Defina a visibilidade do e-mail, gere a sua lista de bloqueio e muito mais.\"],\"cx14rp\":[\"Defina o nome do seu domínio\"],\"tn41zE\":[\"Defina o nome do seu subdomínio\"],\"Tz0i8g\":[\"Definições\"],\"Vy9kmk\":[\"Partilhe este link para convidar utilizadores a juntarem-se ao seu espaço de trabalho\"],\"gWk8gY\":[\"Alterar o rótulo de um campo deve também alterar o nome da API?\"],\"5lWFkC\":[\"Iniciar sessão\"],\"e+RpCP\":[\"Inscrever-se\"],\"5v3IHX\":[\"Início de sessão único (SSO)\"],\"6Uau97\":[\"Saltar\"],\"f6Hub0\":[\"Ordenar\"],\"65A04M\":[\"Espanhol\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"Subdomínio\"],\"omhc+7\":[\"Subdomínio já ocupado\"],\"OlC/tU\":[\"O subdomínio não pode ter mais de 30 caracteres\"],\"ZETwlU\":[\"O subdomínio não pode ter menos de 3 caracteres\"],\"B5jRKH\":[\"A subscrição foi alterada para \",[\"to\"]],\"AxQiPW\":[\"Soma\"],\"XYLcNv\":[\"Suporte\"],\"9yk9d1\":[\"Mudar de \",[\"from\"]],\"qi74XZ\":[\"Mudar para \",[\"to\"]],\"L6Fg36\":[\"Mudar faturação para \",[\"to\"]],\"AtzMpB\":[\"Sincronizar o rótulo do campo e o nome da API\"],\"E3AMmw\":[\"Definições do Sistema - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"Definições do Sistema - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"Termos de Serviço\"],\"NnH3pK\":[\"Teste\"],\"bU9B27\":[\"Testar Workflow\"],\"2OUtmv\":[\"A descrição deste campo\"],\"VGZYbZ\":[\"O e-mail associado à sua conta\"],\"h8mvCd\":[\"O nome e o ícone deste campo\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"A página que procura não existe ou nunca existiu. Vamos pô-lo de volta no caminho certo\"],\"uWikAA\":[\"Os valores deste campo\"],\"+69KDk\":[\"Os valores deste campo devem ser únicos\"],\"ynfkhb\":[\"Ocorreu um erro ao atualizar a palavra-passe.\"],\"PmtLRf\":[\"Houve um problema\"],\"hqCwGc\":[\"Esta ação não pode ser desfeita. Isto eliminará permanentemente este utilizador e removê-lo-á de todas as suas atribuições.\"],\"gWGuHC\":[\"Esta ação não pode ser desfeita. Isto eliminará permanentemente todo o seu espaço de trabalho. <0/> Por favor, digite o seu e-mail para confirmar.\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"Formato da hora\"],\"aqMzDX\":[\"para mensal\"],\"WXXiXO\":[\"para anual\"],\"PiUt3N\":[\"Tipo de Trigger\"],\"IQ5pAL\":[\"O tipo de trigger deve ser Manual - quando nenhum registo está selecionado\"],\"+zy2Nq\":[\"Tipo\"],\"U83IeL\":[\"Digite qualquer coisa\"],\"wSXm5S\":[\"Único\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"Contactos ilimitados\"],\"ONWvwQ\":[\"Carregar\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"Usar como rascunho\"],\"oTTQsc\":[\"Utilize apenas letras, números e traços. Comece e termine com uma letra ou um número\"],\"c6uZUV\":[\"Use a nossa API ou adicione o seu primeiro \",[\"objectLabel\"],\" manualmente\"],\"7PzzBU\":[\"Utilizador\"],\"IjyOjp\":[\"O utilizador não está autenticado\"],\"fXVIZq\":[\"Valores\"],\"KANz0G\":[\"Ver detalhes de faturação\"],\"6n7jtr\":[\"Visualizar\"],\"id6ein\":[\"Suportamos PNGs, JPEGs e GIFs quadrados até 10MB\"],\"ZS7vYp\":[\"Enviaremos pedidos POST para este endpoint para cada novo evento\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"Bem-vindo ao \",[\"workspaceName\"]],\"C51ilI\":[\"Quando a chave da API irá expirar.\"],\"leUubq\":[\"Quando a chave será desativada\"],\"wvyffT\":[\"O workflow não pode ser testado\"],\"pmUArF\":[\"Espaço de trabalho\"],\"VicISP\":[\"Eliminação do espaço de trabalho\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"Escreva uma descrição\"],\"3d1wCB\":[\"sim\"],\"zSkMV0\":[\"Ser-lhe-á cobrado imediatamente o valor total do ano.\"],\"XVnj6K\":[\"O seu saldo de crédito será utilizado para pagar as faturas mensais.\"],\"9ivpwk\":[\"O seu nome como será exibido\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"O seu espaço de trabalho será desativado\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/zh-CN.ts b/packages/twenty-front/src/locales/generated/zh-CN.ts new file mode 100644 index 000000000..a27cb92aa --- /dev/null +++ b/packages/twenty-front/src/locales/generated/zh-CN.ts @@ -0,0 +1 @@ +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" 的 \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API 密钥\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1,000 次工作流节点执行\"],\"4EdXYs\":[\"12小时 (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. 配置字段\"],\"QsMprd\":[\"24小时 (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"中止\"],\"uyJsf6\":[\"关于\"],\"AeXO77\":[\"账户\"],\"nD0Y+a\":[\"删除账户\"],\"bPwFdf\":[\"账户\"],\"FQBaXG\":[\"激活\"],\"tu8A/k\":[\"激活工作流\"],\"F6pfE9\":[\"活跃\"],\"Mue4oc\":[\"由您或您的团队创建的活跃 API 密钥。\"],\"m16xKo\":[\"添加\"],\"DpV70M\":[\"添加字段\"],\"dEO3Zx\":[\"添加对象\"],\"sgXUv+\":[\"添加 SSO 身份提供商\"],\"5+ttxv\":[\"添加到拦截列表\"],\"pBsoKL\":[\"添加到收藏夹\"],\"m2qDV8\":[\"添加您的第一个 \",[\"objectLabel\"]],\"vLO+NG\":[\"已添加 \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"全部\"],\"3saA7W\":[\"全部 (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"所有角色\"],\"GMx1K0\":[\"允许通过 Google 的单点登录功能登录。\"],\"dea+zy\":[\"允许通过微软的单点登录功能登录。\"],\"wMg43c\":[\"允许通过共享邀请链接来邀请新用户。\"],\"vHeVg5\":[\"允许用户使用电子邮件和密码登录。\"],\"LG4K0m\":[\"更新密码时发生错误\"],\"mJ6m4C\":[\"可选描述\"],\"HZFm5R\":[\"和\"],\"0RqpZr\":[\"API 和 Webhooks\"],\"yRnk5W\":[\"API 密钥\"],\"5h8ooz\":[\"API 密钥\"],\"kAtj+q\":[\"API 名称\"],\"aAIQg2\":[\"外观\"],\"3iX0kh\":[\"您确定要更改计费周期吗?\"],\"nYD/Cq\":[\"升序\"],\"rfYmIr\":[\"分配角色以指定每个成员的访问权限\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"分配给\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"至少 8 个字符。\"],\"Y7Dx6e\":[\"必须启用至少一种身份验证方法\"],\"P8fBlG\":[\"身份验证\"],\"yIVrHZ\":[\"授权\"],\"3uQmjD\":[\"平均\"],\"Dht9W3\":[\"返回内容\"],\"R+w/Va\":[\"账单\"],\"K1172m\":[\"拦截列表\"],\"2yl5lQ\":[\"预约电话\"],\"8Pfllj\":[\"使用 Twenty 即表示您同意\"],\"PmmvzS\":[\"计算\"],\"AjVXBS\":[\"日历\"],\"EUpfsd\":[\"日历\"],\"dEgA5A\":[\"取消\"],\"0TllC8\":[\"随时取消\"],\"rRK/Lf\":[\"取消计划\"],\"N6gPiD\":[\"取消订阅\"],\"OfzMnb\":[\"更改 \",[\"to\"]],\"VhMDMg\":[\"更改密码\"],\"SviKkE\":[\"简体中文\"],\"dzb4Ep\":[\"繁体中文\"],\"JEFFOR\":[\"选择对象\"],\"KT6rEB\":[\"选择服务提供商\"],\"9qP96p\":[\"选择试用\"],\"yz7wBu\":[\"关闭\"],\"+zUMwJ\":[\"配置 SSO 连接\"],\"QTNsSm\":[\"配置和自定义日历偏好。\"],\"aGwm+D\":[\"配置应用程序中的日期显示方式\"],\"Bh4GBD\":[\"配置电子邮件和日历设置。\"],\"D8ATlr\":[\"将新账户连接到工作区\"],\"Zgi9Fd\":[\"连接 Google\"],\"IOfqM8\":[\"连接 Microsoft\"],\"9TzudL\":[\"已连接账户\"],\"M73whl\":[\"上下文\"],\"xGVfLh\":[\"继续\"],\"RvVi9c\":[\"继续使用电子邮件\"],\"oZyG4C\":[\"继续使用 Google\"],\"ztoybH\":[\"继续使用 Microsoft\"],\"CcGOj+\":[\"副驾驶\"],\"7eVkEH\":[\"复制邀请链接\"],\"Ej5euX\":[\"复制此密钥,因为它将不再可见\"],\"wBMjJ2\":[\"计数\"],\"EkZfen\":[\"计算所有\"],\"vQJINq\":[\"计算空值\"],\"DzRsDJ\":[\"计算非空值\"],\"9FZBbf\":[\"计算唯一值\"],\"zNoOC2\":[\"创建工作流并返回此处查看其版本\"],\"uXGLuq\":[\"创建 API 密钥\"],\"d0DCww\":[\"创建新记录\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"创建 Webhook\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"自定义对象\"],\"qt+EaC\":[\"自定义 \",[\"objectLabelSingular\"],\" 视图中可用的字段。\"],\"CMhr4u\":[\"自定义域名\"],\"bCJa9l\":[\"自定义工作区安全\"],\"Zz6Cxn\":[\"危险区\"],\"5cNMFz\":[\"数据模型\"],\"r+cVRP\":[\"数据类型\"],\"mYGY3B\":[\"日期\"],\"Ud9zHv\":[\"日期和时间\"],\"5y3O+A\":[\"停用\"],\"qk4i22\":[\"停用 \\\"同步对象标签和 API 名称\\\" 以设置自定义 API 名称\"],\"gexAq8\":[\"停用该字段\"],\"4tpC8V\":[\"停用工作流\"],\"Y2ImVJ\":[\"定义对象的名称和描述\"],\"cnGeoo\":[\"删除\"],\"ZDGm40\":[\"删除账户\"],\"gAz0S5\":[\"删除账户和所有相关数据\"],\"hGfWDm\":[\"删除 API 密钥\"],\"4dpwsE\":[\"删除记录\"],\"kf0A63\":[\"删除记录\"],\"T6S2Ns\":[\"删除此集成\"],\"snMaH4\":[\"删除 Webhook\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"删除工作区\"],\"mk2Ygs\":[\"删除整个工作区\"],\"Cko536\":[\"降序\"],\"Nu4oKW\":[\"描述\"],\"2xxBws\":[\"销毁\"],\"n+SX4g\":[\"开发者\"],\"zAg2B9\":[\"放弃草稿\"],\"i66xz9\":[\"显示为相对日期\"],\"EoKe5U\":[\"域\"],\"QVVmxi\":[\"例如后台集成\"],\"tOkc8o\":[\"最早\"],\"JTbQuO\":[\"最早日期\"],\"v+uKyy\":[\"编辑账单间隔\"],\"h2KoTu\":[\"编辑付款方式、查看发票等\"],\"6o1M/Q\":[\"编辑子域名或设置自定义域名。\"],\"O3oNi5\":[\"电子邮件\"],\"lfQsvW\":[\"电子邮件集成\"],\"QT/Wo7\":[\"电子邮件或域已在拦截列表中\"],\"BXEcos\":[\"电子邮件\"],\"eXoH4Q\":[\"员工\"],\"gqv5ZL\":[\"员工\"],\"N2S1rs\":[\"空\"],\"T3juzf\":[\"端点 URL\"],\"lYGfRP\":[\"英语\"],\"/bfFKe\":[\"享受 \",[\"withCreditCardTrialPeriodDuration\"],\" 天的免费试用期\"],\"GpB8YV\":[\"企业\"],\"c3qGJX\":[\"删除 API 密钥时出错: \",[\"err\"]],\"bj7nh3\":[\"重新生成 API 密钥时出错: \",[\"err\"]],\"VSQxWH\":[\"切换订阅 \",[\"to\"],\" 时出错。\"],\"JLxMta\":[\"建立 Webhook 端点,用于通知异步事件。\"],\"cIgBjB\":[\"从我的电子邮件同步中排除以下人员和域\"],\"fV7V51\":[\"现有对象\"],\"IZ4o2e\":[\"退出设置\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"体验\"],\"LxRNPw\":[\"到期\"],\"SkXfL0\":[\"到期日期\"],\"i9qiyR\":[\"到期时间\"],\"GS+Mus\":[\"导出\"],\"ep2rbf\":[\"导出记录\"],\"q46CjD\":[\"导出为 PDF\"],\"DaGxE0\":[\"导出视图\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"收藏夹\"],\"zXgopL\":[\"字段类型\"],\"vF68cg\":[\"字段\"],\"3w/aqw\":[\"字段计数\"],\"o7J4JM\":[\"过滤\"],\"cSev+j\":[\"过滤器\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"忘记密码?\"],\"nLC6tu\":[\"法语\"],\"aTieE0\":[\"从每月到每年\"],\"K04lE5\":[\"从每年到每月\"],\"scmRyR\":[\"完全访问\"],\"xANKBj\":[\"功能\"],\"Weq9zb\":[\"常规\"],\"DDcvSo\":[\"德语\"],\"NXEW3h\":[\"邀请您的团队,充分利用您的工作区。\"],\"zSGbaR\":[\"获取订阅\"],\"2GT3Hf\":[\"全局\"],\"hWp1MY\":[\"授予 Twenty 支持临时访问您的工作区,以便我们代表您排除故障或恢复内容。您可以随时撤销访问权限。\"],\"vLyv1R\":[\"隐藏\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"图标和名称\"],\"sJGljQ\":[\"标识符\"],\"j843N3\":[\"如果您丢失了此密钥,可以重新生成,但请注意,任何使用此密钥的脚本都需要更新。请键入\\\"\",[\"confirmationValue\"],\"\\\"确认。\"],\"NoNwIX\":[\"未激活\"],\"pZ/USH\":[\"索引\"],\"JE2tjr\":[\"输入内容必须使用驼峰命名法,且不能以数字开头\"],\"AwUsnG\":[\"实例\"],\"nbfdhU\":[\"集成\"],\"NtFk/Z\":[\"无效的身份验证提供商\"],\"B2Tpo0\":[\"无效的电子邮件\"],\"/m52AE\":[\"无效的电子邮件或域\"],\"QdoUFL\":[\"无效的表单值\"],\"0M8+El\":[\"通过电子邮件邀请\"],\"PWIq/W\":[\"通过链接邀请\"],\"3athPG\":[\"通过链接邀请\"],\"5IfmKA\":[\"邀请链接已发送到电子邮件地址\"],\"d+Y+rP\":[\"邀请您的团队\"],\"Lj7sBL\":[\"意大利语\"],\"dFtidv\":[\"日语\"],\"h6S9Yz\":[\"韩语\"],\"zrpwCd\":[\"实验室\"],\"vXIe7J\":[\"语言\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"最新\"],\"Kcjbmz\":[\"最新日期\"],\"pQjjYo\":[\"链接已复制到剪贴板\"],\"FgAxTj\":[\"退出登录\"],\"nOhz3x\":[\"注销\"],\"T6YjCk\":[\"管理成员\"],\"4cjU2u\":[\"在此管理您的空间成员\"],\"FyFNsd\":[\"管理您的互联网账户。\"],\"36kYu0\":[\"管理您的订阅\"],\"3Sdni6\":[\"标记为完成\"],\"CK1KXz\":[\"最大\"],\"wlQNTg\":[\"成员\"],\"eTUF28\":[\"最小\"],\"3Siwmw\":[\"更多选项\"],\"iSLA/r\":[\"左移\"],\"Ubl2by\":[\"右移\"],\"6YtxFj\":[\"名称\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"API 密钥名称\"],\"J7w8lI\":[\"工作区名称\"],\"2T8KCk\":[\"导航到下一条记录\"],\"veSA19\":[\"导航到下一个版本\"],\"ZTEho+\":[\"导航到下一个工作流\"],\"2tw9bo\":[\"导航到上一条记录\"],\"I+Pm5V\":[\"导航到上一个版本\"],\"QVUN3K\":[\"导航到上一个工作流\"],\"isRobC\":[\"新\"],\"Kcr9Fr\":[\"新账户\"],\"o8MyXb\":[\"新密钥\"],\"j313SZ\":[\"新密钥\"],\"hFxdey\":[\"新对象\"],\"7vhWI8\":[\"新密码\"],\"BcCzLv\":[\"新记录\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"新 Webhook\"],\"pwenQu\":[\"无连接账户\"],\"0uWxPM\":[\"尚未运行工作流\"],\"AQCvCC\":[\"尚无工作流版本\"],\"4wUkDk\":[\"非空\"],\"W0i24j\":[\"对象\"],\"B3toQF\":[\"对象\"],\"KNz3EF\":[\"偏离常规路线\"],\"OV5wZZ\":[\"已打开\"],\"0zpgxV\":[\"选项\"],\"BzEFor\":[\"或\"],\"/IX/7x\":[\"其他\"],\"boJlGf\":[\"页面未找到\"],\"8ZsakT\":[\"密码\"],\"BxQ79w\":[\"密码已更新\"],\"mi6Rel\":[\"密码重置链接已发送至电子邮件\"],\"SrVzRe\":[\"百分比\"],\"yIK1GU\":[\"空百分比\"],\"PWLd4c\":[\"非空百分比\"],\"Bv3y5w\":[\"永久销毁记录\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"图片\"],\"jEw0Mr\":[\"请输入有效的 URL\"],\"6nsIo3\":[\"请键入\\\"\",[\"confirmationValue\"],\"\\\"确认要删除此 API 密钥。请注意,任何使用此密钥的脚本都将停止工作。\"],\"mFZTXr\":[\"请输入 \",[\"confirmationText\"],\" 以确认您要删除此 Webhook。\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"巴西葡萄牙语\"],\"xtXHeo\":[\"葡萄牙葡萄牙语\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"预览\"],\"LcET2C\":[\"隐私政策\"],\"vERlcd\":[\"个人资料\"],\"YJgRqq\":[\"伪英语\"],\"ibPuCP\":[\"阅读文档\"],\"v3xM25\":[\"接收包含密码更新链接的电子邮件\"],\"dSCufP\":[\"记录选择\"],\"vpZcGd\":[\"重新生成 API 密钥\"],\"Mwqo5m\":[\"重新生成密钥\"],\"D+Mv78\":[\"重新生成密钥\"],\"5icoS1\":[\"发布\"],\"t/YqKh\":[\"移除\"],\"T/pF0Z\":[\"从收藏中移除\"],\"KbS2K9\":[\"重置密码\"],\"1IWc1n\":[\"重置为\"],\"kx0s+n\":[\"结果\"],\"5dJK4M\":[\"角色\"],\"UX0N2y\":[\"运行工作流并返回此处查看其执行情况\"],\"A1taO8\":[\"搜索\"],\"8NBMeZ\":[\"用\\\"{commandMenuSearch}\\\"搜索...\"],\"l1/uy2\":[\"搜索字段...\"],\"k7kp5/\":[\"搜索索引...\"],\"7taA9j\":[\"搜索字段\"],\"ofuw3g\":[\"搜索对象...\"],\"IMeaSJ\":[\"搜索记录\"],\"a3LDKx\":[\"安全\"],\"QREcJS\":[\"查看活动版本\"],\"OpPn5Z\":[\"查看运行\"],\"EtyY4+\":[\"查看版本\"],\"lYhPN0\":[\"查看版本历史\"],\"xraglu\":[\"选择要发送到此端点的事件\"],\"AXTJAW\":[\"选择您偏好的语言\"],\"mjK8F3\":[\"向您的团队发送邀请电子邮件\"],\"yy5k7a\":[\"服务器管理面板\"],\"V7fgiB\":[\"设置电子邮件可见性、管理黑名单等。\"],\"cx14rp\":[\"设置您的域名\"],\"tn41zE\":[\"设置您的子域名\"],\"Tz0i8g\":[\"设置\"],\"Vy9kmk\":[\"分享此链接以邀请用户加入您的工作区\"],\"gWk8gY\":[\"更改字段标签是否也要更改 API 名称?\"],\"5lWFkC\":[\"登录\"],\"e+RpCP\":[\"注册\"],\"5v3IHX\":[\"单点登录 (SSO)\"],\"6Uau97\":[\"跳过\"],\"f6Hub0\":[\"排序\"],\"65A04M\":[\"西班牙语\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"子域名\"],\"omhc+7\":[\"子域名已被占用\"],\"OlC/tU\":[\"子域名不能超过 30 个字符\"],\"ZETwlU\":[\"子域名不能少于 3 个字符\"],\"B5jRKH\":[\"订阅已切换为 \",[\"to\"]],\"AxQiPW\":[\"总和\"],\"XYLcNv\":[\"支持\"],\"9yk9d1\":[\"切换 \",[\"from\"]],\"qi74XZ\":[\"切换 \",[\"to\"]],\"L6Fg36\":[\"切换计费 \",[\"to\"]],\"AtzMpB\":[\"同步字段标签和 API 名称\"],\"E3AMmw\":[\"系统设置 - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"系统设置 - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"服务条款\"],\"NnH3pK\":[\"测试\"],\"bU9B27\":[\"测试工作流\"],\"2OUtmv\":[\"此字段的描述\"],\"VGZYbZ\":[\"与您的账户关联的电子邮件\"],\"h8mvCd\":[\"此字段的名称和图标\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"您要找的页面已不存在或从未存在。让我们帮您回到正轨\"],\"uWikAA\":[\"此字段的值\"],\"+69KDk\":[\"此字段的值必须唯一\"],\"ynfkhb\":[\"更新密码时出错。\"],\"PmtLRf\":[\"出现问题\"],\"hqCwGc\":[\"此操作无法撤销。这将永久删除该用户,并将其从所有任务中移除。\"],\"gWGuHC\":[\"此操作无法撤销。这将永久删除您的整个工作区。 <0/> 请输入您的电子邮件以确认。\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"时间格式\"],\"aqMzDX\":[\"切换到每月\"],\"WXXiXO\":[\"切换到每年\"],\"PiUt3N\":[\"触发类型\"],\"IQ5pAL\":[\"触发类型应为手动 - 当没有选择记录时\"],\"+zy2Nq\":[\"类型\"],\"U83IeL\":[\"输入任何内容\"],\"wSXm5S\":[\"唯一\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"无限联系人\"],\"ONWvwQ\":[\"上传\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"用作草稿\"],\"oTTQsc\":[\"仅使用字母、数字和破折号。以字母或数字开头和结尾\"],\"c6uZUV\":[\"使用我们的 API 或手动添加您的第一个 \",[\"objectLabel\"]],\"7PzzBU\":[\"用户\"],\"IjyOjp\":[\"用户未登录\"],\"fXVIZq\":[\"值\"],\"KANz0G\":[\"查看账单详情\"],\"6n7jtr\":[\"可视化\"],\"id6ein\":[\"我们支持 10MB 以下的正方形 PNG、JPEG 和 GIF 文件\"],\"ZS7vYp\":[\"我们将为每个新事件向此端点发送 POST 请求\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"欢迎来到 \",[\"workspaceName\"]],\"C51ilI\":[\"API 密钥的过期时间。\"],\"leUubq\":[\"密钥何时会被禁用\"],\"wvyffT\":[\"无法测试工作流\"],\"pmUArF\":[\"工作区\"],\"VicISP\":[\"删除工作区\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"撰写描述\"],\"3d1wCB\":[\"是\"],\"zSkMV0\":[\"您将立即被收取全年的费用。\"],\"XVnj6K\":[\"您的信用余额将用于支付每月账单。\"],\"9ivpwk\":[\"显示的姓名\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"您的工作区将被禁用\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/zh-Hans.ts b/packages/twenty-front/src/locales/generated/zh-Hans.ts deleted file mode 100644 index ce40aa3ac..000000000 --- a/packages/twenty-front/src/locales/generated/zh-Hans.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" 的 \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API 密钥\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1,000 次工作流节点执行\"],\"4EdXYs\":[\"12小时 (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. 配置字段\"],\"QsMprd\":[\"24小时 (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"中止\"],\"uyJsf6\":[\"关于\"],\"AeXO77\":[\"账户\"],\"nD0Y+a\":[\"删除账户\"],\"bPwFdf\":[\"账户\"],\"FQBaXG\":[\"激活\"],\"tu8A/k\":[\"激活工作流\"],\"F6pfE9\":[\"活跃\"],\"Mue4oc\":[\"由您或您的团队创建的活跃 API 密钥。\"],\"m16xKo\":[\"添加\"],\"DpV70M\":[\"添加字段\"],\"dEO3Zx\":[\"添加对象\"],\"sgXUv+\":[\"添加 SSO 身份提供商\"],\"5+ttxv\":[\"添加到拦截列表\"],\"pBsoKL\":[\"添加到收藏夹\"],\"m2qDV8\":[\"添加您的第一个 \",[\"objectLabel\"]],\"vLO+NG\":[\"已添加 \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"全部\"],\"3saA7W\":[\"全部 (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"所有角色\"],\"GMx1K0\":[\"允许通过 Google 的单点登录功能登录。\"],\"dea+zy\":[\"允许通过微软的单点登录功能登录。\"],\"wMg43c\":[\"允许通过共享邀请链接来邀请新用户。\"],\"vHeVg5\":[\"允许用户使用电子邮件和密码登录。\"],\"LG4K0m\":[\"更新密码时发生错误\"],\"mJ6m4C\":[\"可选描述\"],\"HZFm5R\":[\"和\"],\"0RqpZr\":[\"API 和 Webhooks\"],\"yRnk5W\":[\"API 密钥\"],\"5h8ooz\":[\"API 密钥\"],\"kAtj+q\":[\"API 名称\"],\"aAIQg2\":[\"外观\"],\"3iX0kh\":[\"您确定要更改计费周期吗?\"],\"nYD/Cq\":[\"升序\"],\"rfYmIr\":[\"分配角色以指定每个成员的访问权限\"],\"lxQ+5m\":[\"分配给\"],\"H8QGSx\":[\"至少 8 个字符。\"],\"Y7Dx6e\":[\"必须启用至少一种身份验证方法\"],\"P8fBlG\":[\"身份验证\"],\"yIVrHZ\":[\"授权\"],\"3uQmjD\":[\"平均\"],\"Dht9W3\":[\"返回内容\"],\"R+w/Va\":[\"账单\"],\"K1172m\":[\"拦截列表\"],\"2yl5lQ\":[\"预约电话\"],\"8Pfllj\":[\"使用 Twenty 即表示您同意\"],\"PmmvzS\":[\"计算\"],\"AjVXBS\":[\"日历\"],\"EUpfsd\":[\"日历\"],\"dEgA5A\":[\"取消\"],\"0TllC8\":[\"随时取消\"],\"rRK/Lf\":[\"取消计划\"],\"N6gPiD\":[\"取消订阅\"],\"OfzMnb\":[\"更改 \",[\"to\"]],\"VhMDMg\":[\"更改密码\"],\"SviKkE\":[\"简体中文\"],\"dzb4Ep\":[\"繁体中文\"],\"JEFFOR\":[\"选择对象\"],\"KT6rEB\":[\"选择服务提供商\"],\"9qP96p\":[\"选择试用\"],\"yz7wBu\":[\"关闭\"],\"+zUMwJ\":[\"配置 SSO 连接\"],\"QTNsSm\":[\"配置和自定义日历偏好。\"],\"aGwm+D\":[\"配置应用程序中的日期显示方式\"],\"Bh4GBD\":[\"配置电子邮件和日历设置。\"],\"D8ATlr\":[\"将新账户连接到工作区\"],\"Zgi9Fd\":[\"连接 Google\"],\"IOfqM8\":[\"连接 Microsoft\"],\"9TzudL\":[\"已连接账户\"],\"M73whl\":[\"上下文\"],\"xGVfLh\":[\"继续\"],\"RvVi9c\":[\"继续使用电子邮件\"],\"oZyG4C\":[\"继续使用 Google\"],\"ztoybH\":[\"继续使用 Microsoft\"],\"CcGOj+\":[\"副驾驶\"],\"7eVkEH\":[\"复制邀请链接\"],\"Ej5euX\":[\"复制此密钥,因为它将不再可见\"],\"wBMjJ2\":[\"计数\"],\"EkZfen\":[\"计算所有\"],\"vQJINq\":[\"计算空值\"],\"DzRsDJ\":[\"计算非空值\"],\"9FZBbf\":[\"计算唯一值\"],\"zNoOC2\":[\"创建工作流并返回此处查看其版本\"],\"uXGLuq\":[\"创建 API 密钥\"],\"d0DCww\":[\"创建新记录\"],\"dkAPxi\":[\"创建 Webhook\"],\"8skTDV\":[\"自定义对象\"],\"qt+EaC\":[\"自定义 \",[\"objectLabelSingular\"],\" 视图中可用的字段。\"],\"CMhr4u\":[\"自定义域名\"],\"bCJa9l\":[\"自定义工作区安全\"],\"Zz6Cxn\":[\"危险区\"],\"5cNMFz\":[\"数据模型\"],\"r+cVRP\":[\"数据类型\"],\"mYGY3B\":[\"日期\"],\"Ud9zHv\":[\"日期和时间\"],\"5y3O+A\":[\"停用\"],\"qk4i22\":[\"停用 \\\"同步对象标签和 API 名称\\\" 以设置自定义 API 名称\"],\"gexAq8\":[\"停用该字段\"],\"4tpC8V\":[\"停用工作流\"],\"Y2ImVJ\":[\"定义对象的名称和描述\"],\"cnGeoo\":[\"删除\"],\"ZDGm40\":[\"删除账户\"],\"gAz0S5\":[\"删除账户和所有相关数据\"],\"hGfWDm\":[\"删除 API 密钥\"],\"4dpwsE\":[\"删除记录\"],\"kf0A63\":[\"删除记录\"],\"T6S2Ns\":[\"删除此集成\"],\"snMaH4\":[\"删除 Webhook\"],\"kYu0eF\":[\"删除工作区\"],\"mk2Ygs\":[\"删除整个工作区\"],\"Cko536\":[\"降序\"],\"Nu4oKW\":[\"描述\"],\"2xxBws\":[\"销毁\"],\"n+SX4g\":[\"开发者\"],\"zAg2B9\":[\"放弃草稿\"],\"i66xz9\":[\"显示为相对日期\"],\"EoKe5U\":[\"域\"],\"QVVmxi\":[\"例如后台集成\"],\"tOkc8o\":[\"最早\"],\"JTbQuO\":[\"最早日期\"],\"v+uKyy\":[\"编辑账单间隔\"],\"h2KoTu\":[\"编辑付款方式、查看发票等\"],\"6o1M/Q\":[\"编辑子域名或设置自定义域名。\"],\"O3oNi5\":[\"电子邮件\"],\"lfQsvW\":[\"电子邮件集成\"],\"QT/Wo7\":[\"电子邮件或域已在拦截列表中\"],\"BXEcos\":[\"电子邮件\"],\"eXoH4Q\":[\"员工\"],\"gqv5ZL\":[\"员工\"],\"N2S1rs\":[\"空\"],\"T3juzf\":[\"端点 URL\"],\"lYGfRP\":[\"英语\"],\"/bfFKe\":[\"享受 \",[\"withCreditCardTrialPeriodDuration\"],\" 天的免费试用期\"],\"GpB8YV\":[\"企业\"],\"c3qGJX\":[\"删除 API 密钥时出错: \",[\"err\"]],\"bj7nh3\":[\"重新生成 API 密钥时出错: \",[\"err\"]],\"VSQxWH\":[\"切换订阅 \",[\"to\"],\" 时出错。\"],\"JLxMta\":[\"建立 Webhook 端点,用于通知异步事件。\"],\"cIgBjB\":[\"从我的电子邮件同步中排除以下人员和域\"],\"fV7V51\":[\"现有对象\"],\"IZ4o2e\":[\"退出设置\"],\"tXGQvS\":[\"预期所选节点为创建步骤节点。\"],\"bKBhgb\":[\"体验\"],\"LxRNPw\":[\"到期\"],\"SkXfL0\":[\"到期日期\"],\"i9qiyR\":[\"到期时间\"],\"GS+Mus\":[\"导出\"],\"ep2rbf\":[\"导出记录\"],\"q46CjD\":[\"导出为 PDF\"],\"DaGxE0\":[\"导出视图\"],\"X9kySA\":[\"收藏夹\"],\"zXgopL\":[\"字段类型\"],\"vF68cg\":[\"字段\"],\"3w/aqw\":[\"字段计数\"],\"o7J4JM\":[\"过滤\"],\"cSev+j\":[\"过滤器\"],\"glx6on\":[\"忘记密码?\"],\"nLC6tu\":[\"法语\"],\"aTieE0\":[\"从每月到每年\"],\"K04lE5\":[\"从每年到每月\"],\"scmRyR\":[\"完全访问\"],\"xANKBj\":[\"功能\"],\"Weq9zb\":[\"常规\"],\"DDcvSo\":[\"德语\"],\"NXEW3h\":[\"邀请您的团队,充分利用您的工作区。\"],\"zSGbaR\":[\"获取订阅\"],\"2GT3Hf\":[\"全局\"],\"hWp1MY\":[\"授予 Twenty 支持临时访问您的工作区,以便我们代表您排除故障或恢复内容。您可以随时撤销访问权限。\"],\"vLyv1R\":[\"隐藏\"],\"XTWO+W\":[\"图标和名称\"],\"sJGljQ\":[\"标识符\"],\"j843N3\":[\"如果您丢失了此密钥,可以重新生成,但请注意,任何使用此密钥的脚本都需要更新。请键入\\\"\",[\"confirmationValue\"],\"\\\"确认。\"],\"NoNwIX\":[\"未激活\"],\"pZ/USH\":[\"索引\"],\"JE2tjr\":[\"输入内容必须使用驼峰命名法,且不能以数字开头\"],\"AwUsnG\":[\"实例\"],\"nbfdhU\":[\"集成\"],\"NtFk/Z\":[\"无效的身份验证提供商\"],\"B2Tpo0\":[\"无效的电子邮件\"],\"/m52AE\":[\"无效的电子邮件或域\"],\"QdoUFL\":[\"无效的表单值\"],\"0M8+El\":[\"通过电子邮件邀请\"],\"PWIq/W\":[\"通过链接邀请\"],\"3athPG\":[\"通过链接邀请\"],\"5IfmKA\":[\"邀请链接已发送到电子邮件地址\"],\"d+Y+rP\":[\"邀请您的团队\"],\"Lj7sBL\":[\"意大利语\"],\"dFtidv\":[\"日语\"],\"h6S9Yz\":[\"韩语\"],\"zrpwCd\":[\"实验室\"],\"vXIe7J\":[\"语言\"],\"wL3cK8\":[\"最新\"],\"Kcjbmz\":[\"最新日期\"],\"pQjjYo\":[\"链接已复制到剪贴板\"],\"FgAxTj\":[\"退出登录\"],\"nOhz3x\":[\"注销\"],\"T6YjCk\":[\"管理成员\"],\"4cjU2u\":[\"在此管理您的空间成员\"],\"FyFNsd\":[\"管理您的互联网账户。\"],\"36kYu0\":[\"管理您的订阅\"],\"3Sdni6\":[\"标记为完成\"],\"CK1KXz\":[\"最大\"],\"wlQNTg\":[\"成员\"],\"eTUF28\":[\"最小\"],\"3Siwmw\":[\"更多选项\"],\"iSLA/r\":[\"左移\"],\"Ubl2by\":[\"右移\"],\"6YtxFj\":[\"名称\"],\"z+6jaZ\":[\"API 密钥名称\"],\"J7w8lI\":[\"工作区名称\"],\"2T8KCk\":[\"导航到下一条记录\"],\"veSA19\":[\"导航到下一个版本\"],\"ZTEho+\":[\"导航到下一个工作流\"],\"2tw9bo\":[\"导航到上一条记录\"],\"I+Pm5V\":[\"导航到上一个版本\"],\"QVUN3K\":[\"导航到上一个工作流\"],\"isRobC\":[\"新\"],\"Kcr9Fr\":[\"新账户\"],\"o8MyXb\":[\"新密钥\"],\"j313SZ\":[\"新密钥\"],\"hFxdey\":[\"新对象\"],\"7vhWI8\":[\"新密码\"],\"BcCzLv\":[\"新记录\"],\"2lmOC5\":[\"新角色\"],\"U1DAok\":[\"新 Webhook\"],\"pwenQu\":[\"无连接账户\"],\"0uWxPM\":[\"尚未运行工作流\"],\"AQCvCC\":[\"尚无工作流版本\"],\"4wUkDk\":[\"非空\"],\"W0i24j\":[\"对象\"],\"B3toQF\":[\"对象\"],\"KNz3EF\":[\"偏离常规路线\"],\"OV5wZZ\":[\"已打开\"],\"0zpgxV\":[\"选项\"],\"BzEFor\":[\"或\"],\"/IX/7x\":[\"其他\"],\"boJlGf\":[\"页面未找到\"],\"8ZsakT\":[\"密码\"],\"BxQ79w\":[\"密码已更新\"],\"mi6Rel\":[\"密码重置链接已发送至电子邮件\"],\"SrVzRe\":[\"百分比\"],\"yIK1GU\":[\"空百分比\"],\"PWLd4c\":[\"非空百分比\"],\"Bv3y5w\":[\"永久销毁记录\"],\"N0+GsR\":[\"图片\"],\"jEw0Mr\":[\"请输入有效的 URL\"],\"6nsIo3\":[\"请键入\\\"\",[\"confirmationValue\"],\"\\\"确认要删除此 API 密钥。请注意,任何使用此密钥的脚本都将停止工作。\"],\"mFZTXr\":[\"请输入 \",[\"confirmationText\"],\" 以确认您要删除此 Webhook。\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"巴西葡萄牙语\"],\"xtXHeo\":[\"葡萄牙葡萄牙语\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"预览\"],\"LcET2C\":[\"隐私政策\"],\"vERlcd\":[\"个人资料\"],\"YJgRqq\":[\"伪英语\"],\"ibPuCP\":[\"阅读文档\"],\"v3xM25\":[\"接收包含密码更新链接的电子邮件\"],\"dSCufP\":[\"记录选择\"],\"vpZcGd\":[\"重新生成 API 密钥\"],\"Mwqo5m\":[\"重新生成密钥\"],\"D+Mv78\":[\"重新生成密钥\"],\"5icoS1\":[\"发布\"],\"t/YqKh\":[\"移除\"],\"T/pF0Z\":[\"从收藏中移除\"],\"KbS2K9\":[\"重置密码\"],\"1IWc1n\":[\"重置为\"],\"kx0s+n\":[\"结果\"],\"5dJK4M\":[\"角色\"],\"UX0N2y\":[\"运行工作流并返回此处查看其执行情况\"],\"A1taO8\":[\"搜索\"],\"8NBMeZ\":[\"用\\\"{commandMenuSearch}\\\"搜索...\"],\"l1/uy2\":[\"搜索字段...\"],\"k7kp5/\":[\"搜索索引...\"],\"7taA9j\":[\"搜索字段\"],\"ofuw3g\":[\"搜索对象...\"],\"IMeaSJ\":[\"搜索记录\"],\"a3LDKx\":[\"安全\"],\"QREcJS\":[\"查看活动版本\"],\"OpPn5Z\":[\"查看运行\"],\"EtyY4+\":[\"查看版本\"],\"lYhPN0\":[\"查看版本历史\"],\"xraglu\":[\"选择要发送到此端点的事件\"],\"AXTJAW\":[\"选择您偏好的语言\"],\"mjK8F3\":[\"向您的团队发送邀请电子邮件\"],\"yy5k7a\":[\"服务器管理面板\"],\"V7fgiB\":[\"设置电子邮件可见性、管理黑名单等。\"],\"cx14rp\":[\"设置您的域名\"],\"tn41zE\":[\"设置您的子域名\"],\"Tz0i8g\":[\"设置\"],\"Vy9kmk\":[\"分享此链接以邀请用户加入您的工作区\"],\"gWk8gY\":[\"更改字段标签是否也要更改 API 名称?\"],\"5lWFkC\":[\"登录\"],\"e+RpCP\":[\"注册\"],\"5v3IHX\":[\"单点登录 (SSO)\"],\"6Uau97\":[\"跳过\"],\"f6Hub0\":[\"排序\"],\"65A04M\":[\"西班牙语\"],\"vnS6Rf\":[\"SSO\"],\"ku9TbG\":[\"子域名\"],\"omhc+7\":[\"子域名已被占用\"],\"OlC/tU\":[\"子域名不能超过 30 个字符\"],\"ZETwlU\":[\"子域名不能少于 3 个字符\"],\"B5jRKH\":[\"订阅已切换为 \",[\"to\"]],\"AxQiPW\":[\"总和\"],\"XYLcNv\":[\"支持\"],\"9yk9d1\":[\"切换 \",[\"from\"]],\"qi74XZ\":[\"切换 \",[\"to\"]],\"L6Fg36\":[\"切换计费 \",[\"to\"]],\"AtzMpB\":[\"同步字段标签和 API 名称\"],\"E3AMmw\":[\"系统设置 - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"系统设置 - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"服务条款\"],\"NnH3pK\":[\"测试\"],\"bU9B27\":[\"测试工作流\"],\"2OUtmv\":[\"此字段的描述\"],\"VGZYbZ\":[\"与您的账户关联的电子邮件\"],\"h8mvCd\":[\"此字段的名称和图标\"],\"L97sPr\":[\"您要找的页面已不存在或从未存在。让我们帮您回到正轨\"],\"uWikAA\":[\"此字段的值\"],\"+69KDk\":[\"此字段的值必须唯一\"],\"ynfkhb\":[\"更新密码时出错。\"],\"PmtLRf\":[\"出现问题\"],\"hqCwGc\":[\"此操作无法撤销。这将永久删除该用户,并将其从所有任务中移除。\"],\"gWGuHC\":[\"此操作无法撤销。这将永久删除您的整个工作区。 <0/> 请输入您的电子邮件以确认。\"],\"n9nSNJ\":[\"时间格式\"],\"aqMzDX\":[\"切换到每月\"],\"WXXiXO\":[\"切换到每年\"],\"PiUt3N\":[\"触发类型\"],\"IQ5pAL\":[\"触发类型应为手动 - 当没有选择记录时\"],\"+zy2Nq\":[\"类型\"],\"U83IeL\":[\"输入任何内容\"],\"wSXm5S\":[\"唯一\"],\"GQCXQS\":[\"无限联系人\"],\"ONWvwQ\":[\"上传\"],\"IagCbF\":[\"URL\"],\"6dMpmz\":[\"用作草稿\"],\"oTTQsc\":[\"仅使用字母、数字和破折号。以字母或数字开头和结尾\"],\"c6uZUV\":[\"使用我们的 API 或手动添加您的第一个 \",[\"objectLabel\"]],\"7PzzBU\":[\"用户\"],\"IjyOjp\":[\"用户未登录\"],\"fXVIZq\":[\"值\"],\"KANz0G\":[\"查看账单详情\"],\"6n7jtr\":[\"可视化\"],\"id6ein\":[\"我们支持 10MB 以下的正方形 PNG、JPEG 和 GIF 文件\"],\"ZS7vYp\":[\"我们将为每个新事件向此端点发送 POST 请求\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"欢迎来到 \",[\"workspaceName\"]],\"C51ilI\":[\"API 密钥的过期时间。\"],\"leUubq\":[\"密钥何时会被禁用\"],\"wvyffT\":[\"无法测试工作流\"],\"pmUArF\":[\"工作区\"],\"VicISP\":[\"删除工作区\"],\"Q9pNST\":[\"撰写描述\"],\"3d1wCB\":[\"是\"],\"zSkMV0\":[\"您将立即被收取全年的费用。\"],\"XVnj6K\":[\"您的信用余额将用于支付每月账单。\"],\"9ivpwk\":[\"显示的姓名\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"您的工作区将被禁用\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/zh-Hant.ts b/packages/twenty-front/src/locales/generated/zh-Hant.ts deleted file mode 100644 index aafd3474e..000000000 --- a/packages/twenty-front/src/locales/generated/zh-Hant.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" 的 \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API 密鑰\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1,000 次工作流程節點執行\"],\"4EdXYs\":[\"12小時 (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. 配置字段\"],\"QsMprd\":[\"24小時 (\",[\"hour24Label\"],\")\"],\"ssjjFt\":[\"中止\"],\"uyJsf6\":[\"關於\"],\"AeXO77\":[\"帳戶\"],\"nD0Y+a\":[\"刪除帳戶\"],\"bPwFdf\":[\"帳戶\"],\"FQBaXG\":[\"啟用\"],\"tu8A/k\":[\"啟用工作流程\"],\"F6pfE9\":[\"啟用\"],\"Mue4oc\":[\"由您或您的團隊創建的啟用 API 密鑰。\"],\"m16xKo\":[\"添加\"],\"DpV70M\":[\"添加字段\"],\"dEO3Zx\":[\"添加對象\"],\"sgXUv+\":[\"添加 SSO 身份提供者\"],\"5+ttxv\":[\"添加到阻止列表\"],\"pBsoKL\":[\"添加到收藏夾\"],\"m2qDV8\":[\"添加您的第一個 \",[\"objectLabel\"]],\"vLO+NG\":[\"已添加 \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"全部\"],\"3saA7W\":[\"全部 (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"所有角色\"],\"GMx1K0\":[\"允許通過 Google 的單點登錄功能登錄。\"],\"dea+zy\":[\"允許通過 Microsoft 的單點登錄功能登錄。\"],\"wMg43c\":[\"允許通過共享邀請鏈接邀請新用戶。\"],\"vHeVg5\":[\"允許用戶使用電子郵件和密碼登錄。\"],\"LG4K0m\":[\"更新密碼時發生錯誤\"],\"mJ6m4C\":[\"可選描述\"],\"HZFm5R\":[\"和\"],\"0RqpZr\":[\"API 和 Webhooks\"],\"yRnk5W\":[\"API 密鑰\"],\"5h8ooz\":[\"API 密鑰\"],\"kAtj+q\":[\"API 名稱\"],\"aAIQg2\":[\"外觀\"],\"3iX0kh\":[\"您確定要更改計費間隔嗎?\"],\"nYD/Cq\":[\"升序\"],\"rfYmIr\":[\"分配角色以指定每個成員的訪問權限\"],\"lxQ+5m\":[\"分配給\"],\"H8QGSx\":[\"至少 8 個字符。\"],\"Y7Dx6e\":[\"必須啟用至少一種身份驗證方法\"],\"P8fBlG\":[\"身份驗證\"],\"yIVrHZ\":[\"授權\"],\"3uQmjD\":[\"平均\"],\"Dht9W3\":[\"返回內容\"],\"R+w/Va\":[\"計費\"],\"K1172m\":[\"阻止列表\"],\"2yl5lQ\":[\"預約電話\"],\"8Pfllj\":[\"使用 Twenty 即表示您同意\"],\"PmmvzS\":[\"計算\"],\"AjVXBS\":[\"日曆\"],\"EUpfsd\":[\"日曆\"],\"dEgA5A\":[\"取消\"],\"0TllC8\":[\"隨時取消\"],\"rRK/Lf\":[\"取消計劃\"],\"N6gPiD\":[\"取消訂閱\"],\"OfzMnb\":[\"更改 \",[\"to\"]],\"VhMDMg\":[\"更改密碼\"],\"SviKkE\":[\"簡體中文\"],\"dzb4Ep\":[\"繁體中文\"],\"JEFFOR\":[\"選擇對象\"],\"KT6rEB\":[\"選擇服務提供商\"],\"9qP96p\":[\"選擇試用\"],\"yz7wBu\":[\"關閉\"],\"+zUMwJ\":[\"配置 SSO 連接\"],\"QTNsSm\":[\"配置和自定義日曆偏好。\"],\"aGwm+D\":[\"配置應用程序中日期的顯示方式\"],\"Bh4GBD\":[\"配置您的電子郵件和日曆設置。\"],\"D8ATlr\":[\"將新帳戶連接到工作區\"],\"Zgi9Fd\":[\"連接到 Google\"],\"IOfqM8\":[\"連接到 Microsoft\"],\"9TzudL\":[\"已連接帳戶\"],\"M73whl\":[\"上下文\"],\"xGVfLh\":[\"繼續\"],\"RvVi9c\":[\"繼續使用電子郵件\"],\"oZyG4C\":[\"繼續使用 Google\"],\"ztoybH\":[\"繼續使用 Microsoft\"],\"CcGOj+\":[\"副駕駛\"],\"7eVkEH\":[\"複製邀請鏈接\"],\"Ej5euX\":[\"複製此密鑰,因為它將不再可見\"],\"wBMjJ2\":[\"計數\"],\"EkZfen\":[\"計數所有\"],\"vQJINq\":[\"計數空\"],\"DzRsDJ\":[\"計數非空\"],\"9FZBbf\":[\"計數唯一值\"],\"zNoOC2\":[\"創建工作流程並返回此處查看其版本\"],\"uXGLuq\":[\"創建 API 密鑰\"],\"d0DCww\":[\"創建新記錄\"],\"dkAPxi\":[\"創建 Webhook\"],\"8skTDV\":[\"自定義對象\"],\"qt+EaC\":[\"自定義 \",[\"objectLabelSingular\"],\" 視圖中可用的字段。\"],\"CMhr4u\":[\"自定義域名\"],\"bCJa9l\":[\"自定義工作區安全\"],\"Zz6Cxn\":[\"危險區\"],\"5cNMFz\":[\"數據模型\"],\"r+cVRP\":[\"數據類型\"],\"mYGY3B\":[\"日期\"],\"Ud9zHv\":[\"日期和時間\"],\"5y3O+A\":[\"停用\"],\"qk4i22\":[\"停用 \\\"同步對象標籤和 API 名稱\\\" 以設置自定義 API 名稱\"],\"gexAq8\":[\"停用此字段\"],\"4tpC8V\":[\"停用工作流程\"],\"Y2ImVJ\":[\"定義對象的名稱和描述\"],\"cnGeoo\":[\"刪除\"],\"ZDGm40\":[\"刪除帳戶\"],\"gAz0S5\":[\"刪除帳戶及所有相關數據\"],\"hGfWDm\":[\"刪除 API 密鑰\"],\"4dpwsE\":[\"刪除記錄\"],\"kf0A63\":[\"刪除記錄\"],\"T6S2Ns\":[\"刪除此集成\"],\"snMaH4\":[\"刪除 Webhook\"],\"kYu0eF\":[\"刪除工作區\"],\"mk2Ygs\":[\"刪除整個工作區\"],\"Cko536\":[\"降序\"],\"Nu4oKW\":[\"描述\"],\"2xxBws\":[\"銷毀\"],\"n+SX4g\":[\"開發人員\"],\"zAg2B9\":[\"放棄草稿\"],\"i66xz9\":[\"顯示為相對日期\"],\"EoKe5U\":[\"域名\"],\"QVVmxi\":[\"例如後台集成\"],\"tOkc8o\":[\"最早\"],\"JTbQuO\":[\"最早日期\"],\"v+uKyy\":[\"編輯計費間隔\"],\"h2KoTu\":[\"編輯付款方式、查看發票等\"],\"6o1M/Q\":[\"編輯您的子域名或設置自定義域名。\"],\"O3oNi5\":[\"電子郵件\"],\"lfQsvW\":[\"電子郵件集成\"],\"QT/Wo7\":[\"電子郵件或域名已在阻止列表中\"],\"BXEcos\":[\"電子郵件\"],\"eXoH4Q\":[\"員工\"],\"gqv5ZL\":[\"員工\"],\"N2S1rs\":[\"空\"],\"T3juzf\":[\"端點 URL\"],\"lYGfRP\":[\"英語\"],\"/bfFKe\":[\"享受 \",[\"withCreditCardTrialPeriodDuration\"],\" 天的免費試用期\"],\"GpB8YV\":[\"企業\"],\"c3qGJX\":[\"刪除 API 密鑰時出錯:\",[\"err\"]],\"bj7nh3\":[\"重新生成 API 密鑰時出錯:\",[\"err\"]],\"VSQxWH\":[\"切換訂閱 \",[\"to\"],\" 時出錯。\"],\"JLxMta\":[\"建立 Webhook 端點,用於通知異步事件。\"],\"cIgBjB\":[\"從我的電子郵件同步中排除以下人員和域名\"],\"fV7V51\":[\"現有對象\"],\"IZ4o2e\":[\"退出設置\"],\"tXGQvS\":[\"預期所選節點為創建步驟節點。\"],\"bKBhgb\":[\"體驗\"],\"LxRNPw\":[\"到期\"],\"SkXfL0\":[\"到期日期\"],\"i9qiyR\":[\"到期時間\"],\"GS+Mus\":[\"導出\"],\"ep2rbf\":[\"導出記錄\"],\"q46CjD\":[\"導出為 PDF\"],\"DaGxE0\":[\"導出視圖\"],\"X9kySA\":[\"收藏夾\"],\"zXgopL\":[\"字段類型\"],\"vF68cg\":[\"字段\"],\"3w/aqw\":[\"字段計數\"],\"o7J4JM\":[\"篩選\"],\"cSev+j\":[\"篩選\"],\"glx6on\":[\"忘記密碼?\"],\"nLC6tu\":[\"法語\"],\"aTieE0\":[\"從每月到每年\"],\"K04lE5\":[\"從每年到每月\"],\"scmRyR\":[\"完全訪問\"],\"xANKBj\":[\"功能\"],\"Weq9zb\":[\"常規\"],\"DDcvSo\":[\"德語\"],\"NXEW3h\":[\"邀請您的團隊,充分利用您的工作區。\"],\"zSGbaR\":[\"獲取訂閱\"],\"2GT3Hf\":[\"全局\"],\"hWp1MY\":[\"授予 Twenty 支持臨時訪問您的工作區,以便我們為您排除故障或恢復內容。您可以隨時撤銷訪問權限。\"],\"vLyv1R\":[\"隱藏\"],\"XTWO+W\":[\"圖標和名稱\"],\"sJGljQ\":[\"標識符\"],\"j843N3\":[\"如果您丟失了此密鑰,可以重新生成,但請注意,任何使用此密鑰的腳本都需要更新。請鍵入\\\"\",[\"confirmationValue\"],\"\\\"確認。\"],\"NoNwIX\":[\"未啟用\"],\"pZ/USH\":[\"索引\"],\"JE2tjr\":[\"輸入必須為駝峰式大小寫,且不能以數字開頭\"],\"AwUsnG\":[\"實例\"],\"nbfdhU\":[\"集成\"],\"NtFk/Z\":[\"無效的身份驗證提供者\"],\"B2Tpo0\":[\"無效的電子郵件\"],\"/m52AE\":[\"無效的電子郵件或域名\"],\"QdoUFL\":[\"無效的表單值\"],\"0M8+El\":[\"通過電子郵件邀請\"],\"PWIq/W\":[\"通過鏈接邀請\"],\"3athPG\":[\"通過鏈接邀請\"],\"5IfmKA\":[\"向电子邮件地址发送邀请链接\"],\"d+Y+rP\":[\"邀請您的團隊\"],\"Lj7sBL\":[\"意大利語\"],\"dFtidv\":[\"日語\"],\"h6S9Yz\":[\"韓語\"],\"zrpwCd\":[\"實驗室\"],\"vXIe7J\":[\"語言\"],\"wL3cK8\":[\"最新\"],\"Kcjbmz\":[\"最新日期\"],\"pQjjYo\":[\"鏈接已複製到剪貼板\"],\"FgAxTj\":[\"登出\"],\"nOhz3x\":[\"登出\"],\"T6YjCk\":[\"管理成員\"],\"4cjU2u\":[\"在此管理您的空間成員\"],\"FyFNsd\":[\"管理您的互聯網帳戶\"],\"36kYu0\":[\"管理您的訂閱\"],\"3Sdni6\":[\"標記為完成\"],\"CK1KXz\":[\"最大\"],\"wlQNTg\":[\"成員\"],\"eTUF28\":[\"最小\"],\"3Siwmw\":[\"更多選項\"],\"iSLA/r\":[\"向左移動\"],\"Ubl2by\":[\"向右移動\"],\"6YtxFj\":[\"名稱\"],\"z+6jaZ\":[\"API 密鑰名稱\"],\"J7w8lI\":[\"工作區名稱\"],\"2T8KCk\":[\"導航至下一條記錄\"],\"veSA19\":[\"導航至下一版本\"],\"ZTEho+\":[\"導航至下一個工作流程\"],\"2tw9bo\":[\"導航至上一條記錄\"],\"I+Pm5V\":[\"導航至上一版本\"],\"QVUN3K\":[\"導航至上一個工作流程\"],\"isRobC\":[\"新\"],\"Kcr9Fr\":[\"新帳戶\"],\"o8MyXb\":[\"新密鑰\"],\"j313SZ\":[\"新密鑰\"],\"hFxdey\":[\"新對象\"],\"7vhWI8\":[\"新密碼\"],\"BcCzLv\":[\"新記錄\"],\"2lmOC5\":[\"新角色\"],\"U1DAok\":[\"新 Webhook\"],\"pwenQu\":[\"無連接帳戶\"],\"0uWxPM\":[\"尚未運行工作流程\"],\"AQCvCC\":[\"尚無工作流程版本\"],\"4wUkDk\":[\"非空\"],\"W0i24j\":[\"對象\"],\"B3toQF\":[\"對象\"],\"KNz3EF\":[\"偏離常規路線\"],\"OV5wZZ\":[\"已開啟\"],\"0zpgxV\":[\"選項\"],\"BzEFor\":[\"或\"],\"/IX/7x\":[\"其他\"],\"boJlGf\":[\"頁面未找到\"],\"8ZsakT\":[\"密碼\"],\"BxQ79w\":[\"密碼已更新\"],\"mi6Rel\":[\"密碼重置鏈接已發送至電子郵件\"],\"SrVzRe\":[\"百分比\"],\"yIK1GU\":[\"空百分比\"],\"PWLd4c\":[\"非空百分比\"],\"Bv3y5w\":[\"永久銷毀記錄\"],\"N0+GsR\":[\"圖片\"],\"jEw0Mr\":[\"請輸入有效的 URL\"],\"6nsIo3\":[\"請鍵入\\\"\",[\"confirmationValue\"],\"\\\"確認要刪除此 API 密鑰。請注意,任何使用此密鑰的腳本都將停止工作。\"],\"mFZTXr\":[\"請鍵入 \",[\"confirmationText\"],\" 確認要刪除此 Webhook。\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"葡萄牙語 - 巴西\"],\"xtXHeo\":[\"葡萄牙語 - 葡萄牙\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"預覽\"],\"LcET2C\":[\"隱私政策\"],\"vERlcd\":[\"個人資料\"],\"YJgRqq\":[\"偽英語\"],\"ibPuCP\":[\"閱讀文檔\"],\"v3xM25\":[\"接收包含密碼更新鏈接的電子郵件\"],\"dSCufP\":[\"記錄選擇\"],\"vpZcGd\":[\"重新生成 API 密鑰\"],\"Mwqo5m\":[\"重新生成密鑰\"],\"D+Mv78\":[\"重新生成密鑰\"],\"5icoS1\":[\"版本\"],\"t/YqKh\":[\"移除\"],\"T/pF0Z\":[\"從收藏中移除\"],\"KbS2K9\":[\"重置密碼\"],\"1IWc1n\":[\"重置為\"],\"kx0s+n\":[\"結果\"],\"5dJK4M\":[\"角色\"],\"UX0N2y\":[\"運行工作流程並返回此處查看其執行情況\"],\"A1taO8\":[\"搜索\"],\"8NBMeZ\":[\"用\\\"{commandMenuSearch}\\\"搜索...\"],\"l1/uy2\":[\"搜索字段...\"],\"k7kp5/\":[\"搜索索引...\"],\"7taA9j\":[\"搜索字段\"],\"ofuw3g\":[\"搜索對象...\"],\"IMeaSJ\":[\"搜索記錄\"],\"a3LDKx\":[\"安全\"],\"QREcJS\":[\"查看活動版本\"],\"OpPn5Z\":[\"查看運行\"],\"EtyY4+\":[\"查看版本\"],\"lYhPN0\":[\"查看版本歷史\"],\"xraglu\":[\"選擇要發送到此端點的事件\"],\"AXTJAW\":[\"選擇您偏好的語言\"],\"mjK8F3\":[\"向您的團隊發送邀請電子郵件\"],\"yy5k7a\":[\"服務器管理面板\"],\"V7fgiB\":[\"設置電子郵件可見性,管理您的屏蔽列表等。\"],\"cx14rp\":[\"設置您的域名\"],\"tn41zE\":[\"設置您的子域名\"],\"Tz0i8g\":[\"設置\"],\"Vy9kmk\":[\"分享此鏈接以邀請用戶加入您的工作區\"],\"gWk8gY\":[\"更改字段標籤是否也應更改 API 名稱?\"],\"5lWFkC\":[\"登錄\"],\"e+RpCP\":[\"註冊\"],\"5v3IHX\":[\"單點登錄(SSO)\"],\"6Uau97\":[\"跳過\"],\"f6Hub0\":[\"排序\"],\"65A04M\":[\"西班牙語\"],\"vnS6Rf\":[\"單點登錄\"],\"ku9TbG\":[\"子域\"],\"omhc+7\":[\"子域名已被佔用\"],\"OlC/tU\":[\"子域名不能超過 30 個字符\"],\"ZETwlU\":[\"子域名不能少於 3 個字符\"],\"B5jRKH\":[\"訂閱已切換 \",[\"to\"]],\"AxQiPW\":[\"總和\"],\"XYLcNv\":[\"支援\"],\"9yk9d1\":[\"切換 \",[\"from\"]],\"qi74XZ\":[\"切換 \",[\"to\"]],\"L6Fg36\":[\"切換計費 \",[\"to\"]],\"AtzMpB\":[\"同步字段標籤和 API 名稱\"],\"E3AMmw\":[\"系統設置 - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"系統設置 - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"服務條款\"],\"NnH3pK\":[\"測試\"],\"bU9B27\":[\"測試工作流程\"],\"2OUtmv\":[\"此字段的描述\"],\"VGZYbZ\":[\"與您的帳戶關聯的電子郵件\"],\"h8mvCd\":[\"此字段的名稱和圖標\"],\"L97sPr\":[\"您正在尋找的頁面已經消失或從未存在。讓我們幫助您回到正軌\"],\"uWikAA\":[\"此字段的值\"],\"+69KDk\":[\"此字段的值必須唯一\"],\"ynfkhb\":[\"更新密碼時出現錯誤。\"],\"PmtLRf\":[\"出現問題\"],\"hqCwGc\":[\"此操作無法撤銷。這將永久刪除此用戶並將其從所有任務中移除。\"],\"gWGuHC\":[\"此操作無法撤銷。這將永久刪除您的整個工作區。 <0/> 請輸入您的電子郵件以確認。\"],\"n9nSNJ\":[\"時間格式\"],\"aqMzDX\":[\"至每月\"],\"WXXiXO\":[\"至每年\"],\"PiUt3N\":[\"觸發類型\"],\"IQ5pAL\":[\"觸發類型應為手動 - 當未選擇記錄時\"],\"+zy2Nq\":[\"類型\"],\"U83IeL\":[\"輸入任何內容\"],\"wSXm5S\":[\"唯一\"],\"GQCXQS\":[\"無限聯繫人\"],\"ONWvwQ\":[\"上傳\"],\"IagCbF\":[\"網址\"],\"6dMpmz\":[\"用作草稿\"],\"oTTQsc\":[\"只能使用字母、數字和破折號。以字母或數字開頭和結尾\"],\"c6uZUV\":[\"使用我們的 API 或手動添加您的第一個 \",[\"objectLabel\"]],\"7PzzBU\":[\"用戶\"],\"IjyOjp\":[\"用戶未登錄\"],\"fXVIZq\":[\"值\"],\"KANz0G\":[\"查看計費詳情\"],\"6n7jtr\":[\"可視化\"],\"id6ein\":[\"我們支持 10MB 以下的正方形 PNG、JPEG 和 GIF 文件\"],\"ZS7vYp\":[\"我們將為每個新事件向此端點發送 POST 請求\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"歡迎來到 \",[\"workspaceName\"]],\"C51ilI\":[\"API 密鑰的過期時間。\"],\"leUubq\":[\"按鍵何時禁用\"],\"wvyffT\":[\"無法測試工作流程\"],\"pmUArF\":[\"工作區\"],\"VicISP\":[\"刪除工作區\"],\"Q9pNST\":[\"撰寫描述\"],\"3d1wCB\":[\"是\"],\"zSkMV0\":[\"您將立即被收取全年的費用。\"],\"XVnj6K\":[\"您的信用餘額將用於支付每月賬單。\"],\"9ivpwk\":[\"顯示您的姓名\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"您的工作區將被禁用\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/generated/zh-TW.ts b/packages/twenty-front/src/locales/generated/zh-TW.ts new file mode 100644 index 000000000..5436c8c16 --- /dev/null +++ b/packages/twenty-front/src/locales/generated/zh-TW.ts @@ -0,0 +1 @@ +/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"ROdDR9\":[[\"aggregateLabel\"],\" 的 \",[\"fieldLabel\"]],\"uogEAL\":[[\"apiKeyName\"],\" API 密鑰\"],\"6j5rE1\":[[\"name\"]],\"YT0WJ4\":[\"1,000 次工作流程節點執行\"],\"4EdXYs\":[\"12小時 (\",[\"hour12Label\"],\")\"],\"0HAF12\":[\"2. 配置字段\"],\"QsMprd\":[\"24小時 (\",[\"hour24Label\"],\")\"],\"nMTB1f\":[\"A shared environment where you will be able to manage your customer relations with your team.\"],\"ssjjFt\":[\"中止\"],\"uyJsf6\":[\"關於\"],\"AeXO77\":[\"帳戶\"],\"nD0Y+a\":[\"刪除帳戶\"],\"bPwFdf\":[\"帳戶\"],\"FQBaXG\":[\"啟用\"],\"tu8A/k\":[\"啟用工作流程\"],\"F6pfE9\":[\"啟用\"],\"Mue4oc\":[\"由您或您的團隊創建的啟用 API 密鑰。\"],\"m16xKo\":[\"添加\"],\"DpV70M\":[\"添加字段\"],\"dEO3Zx\":[\"添加對象\"],\"sgXUv+\":[\"添加 SSO 身份提供者\"],\"5+ttxv\":[\"添加到阻止列表\"],\"pBsoKL\":[\"添加到收藏夾\"],\"m2qDV8\":[\"添加您的第一個 \",[\"objectLabel\"]],\"vLO+NG\":[\"已添加 \",[\"beautifiedCreatedAt\"]],\"N40H+G\":[\"全部\"],\"3saA7W\":[\"全部 (\",[\"relationRecordsCount\"],\")\"],\"Hm90t3\":[\"所有角色\"],\"GMx1K0\":[\"允許通過 Google 的單點登錄功能登錄。\"],\"dea+zy\":[\"允許通過 Microsoft 的單點登錄功能登錄。\"],\"wMg43c\":[\"允許通過共享邀請鏈接邀請新用戶。\"],\"vHeVg5\":[\"允許用戶使用電子郵件和密碼登錄。\"],\"LG4K0m\":[\"更新密碼時發生錯誤\"],\"mJ6m4C\":[\"可選描述\"],\"HZFm5R\":[\"和\"],\"0RqpZr\":[\"API 和 Webhooks\"],\"yRnk5W\":[\"API 密鑰\"],\"5h8ooz\":[\"API 密鑰\"],\"kAtj+q\":[\"API 名稱\"],\"aAIQg2\":[\"外觀\"],\"3iX0kh\":[\"您確定要更改計費間隔嗎?\"],\"nYD/Cq\":[\"升序\"],\"rfYmIr\":[\"分配角色以指定每個成員的訪問權限\"],\"OItM/o\":[\"Assigned members\"],\"lxQ+5m\":[\"分配給\"],\"0dtKl9\":[\"Assignment\"],\"H8QGSx\":[\"至少 8 個字符。\"],\"Y7Dx6e\":[\"必須啟用至少一種身份驗證方法\"],\"P8fBlG\":[\"身份驗證\"],\"yIVrHZ\":[\"授權\"],\"3uQmjD\":[\"平均\"],\"Dht9W3\":[\"返回內容\"],\"R+w/Va\":[\"計費\"],\"K1172m\":[\"阻止列表\"],\"2yl5lQ\":[\"預約電話\"],\"8Pfllj\":[\"使用 Twenty 即表示您同意\"],\"PmmvzS\":[\"計算\"],\"AjVXBS\":[\"日曆\"],\"EUpfsd\":[\"日曆\"],\"dEgA5A\":[\"取消\"],\"0TllC8\":[\"隨時取消\"],\"rRK/Lf\":[\"取消計劃\"],\"N6gPiD\":[\"取消訂閱\"],\"OfzMnb\":[\"更改 \",[\"to\"]],\"VhMDMg\":[\"更改密碼\"],\"SviKkE\":[\"簡體中文\"],\"dzb4Ep\":[\"繁體中文\"],\"JEFFOR\":[\"選擇對象\"],\"KT6rEB\":[\"選擇服務提供商\"],\"9qP96p\":[\"選擇試用\"],\"yz7wBu\":[\"關閉\"],\"+zUMwJ\":[\"配置 SSO 連接\"],\"QTNsSm\":[\"配置和自定義日曆偏好。\"],\"aGwm+D\":[\"配置應用程序中日期的顯示方式\"],\"Bh4GBD\":[\"配置您的電子郵件和日曆設置。\"],\"D8ATlr\":[\"將新帳戶連接到工作區\"],\"Zgi9Fd\":[\"連接到 Google\"],\"IOfqM8\":[\"連接到 Microsoft\"],\"9TzudL\":[\"已連接帳戶\"],\"M73whl\":[\"上下文\"],\"xGVfLh\":[\"繼續\"],\"RvVi9c\":[\"繼續使用電子郵件\"],\"oZyG4C\":[\"繼續使用 Google\"],\"ztoybH\":[\"繼續使用 Microsoft\"],\"CcGOj+\":[\"副駕駛\"],\"7eVkEH\":[\"複製邀請鏈接\"],\"Ej5euX\":[\"複製此密鑰,因為它將不再可見\"],\"wBMjJ2\":[\"計數\"],\"EkZfen\":[\"計數所有\"],\"vQJINq\":[\"計數空\"],\"DzRsDJ\":[\"計數非空\"],\"9FZBbf\":[\"計數唯一值\"],\"zNoOC2\":[\"創建工作流程並返回此處查看其版本\"],\"uXGLuq\":[\"創建 API 密鑰\"],\"d0DCww\":[\"創建新記錄\"],\"gSyzEV\":[\"Create profile\"],\"RoyYUE\":[\"Create Role\"],\"dkAPxi\":[\"創建 Webhook\"],\"9chYz/\":[\"Create your workspace\"],\"8skTDV\":[\"自定義對象\"],\"qt+EaC\":[\"自定義 \",[\"objectLabelSingular\"],\" 視圖中可用的字段。\"],\"CMhr4u\":[\"自定義域名\"],\"bCJa9l\":[\"自定義工作區安全\"],\"Zz6Cxn\":[\"危險區\"],\"5cNMFz\":[\"數據模型\"],\"r+cVRP\":[\"數據類型\"],\"mYGY3B\":[\"日期\"],\"Ud9zHv\":[\"日期和時間\"],\"5y3O+A\":[\"停用\"],\"qk4i22\":[\"停用 \\\"同步對象標籤和 API 名稱\\\" 以設置自定義 API 名稱\"],\"gexAq8\":[\"停用此字段\"],\"4tpC8V\":[\"停用工作流程\"],\"Y2ImVJ\":[\"定義對象的名稱和描述\"],\"cnGeoo\":[\"刪除\"],\"ZDGm40\":[\"刪除帳戶\"],\"gAz0S5\":[\"刪除帳戶及所有相關數據\"],\"hGfWDm\":[\"刪除 API 密鑰\"],\"4dpwsE\":[\"刪除記錄\"],\"kf0A63\":[\"刪除記錄\"],\"T6S2Ns\":[\"刪除此集成\"],\"snMaH4\":[\"刪除 Webhook\"],\"UA2IpC\":[\"Delete workflow\"],\"ABwG9x\":[\"Delete workflows\"],\"kYu0eF\":[\"刪除工作區\"],\"mk2Ygs\":[\"刪除整個工作區\"],\"Cko536\":[\"降序\"],\"Nu4oKW\":[\"描述\"],\"2xxBws\":[\"銷毀\"],\"n+SX4g\":[\"開發人員\"],\"zAg2B9\":[\"放棄草稿\"],\"i66xz9\":[\"顯示為相對日期\"],\"EoKe5U\":[\"域名\"],\"QVVmxi\":[\"例如後台集成\"],\"tOkc8o\":[\"最早\"],\"JTbQuO\":[\"最早日期\"],\"v+uKyy\":[\"編輯計費間隔\"],\"h2KoTu\":[\"編輯付款方式、查看發票等\"],\"6o1M/Q\":[\"編輯您的子域名或設置自定義域名。\"],\"O3oNi5\":[\"電子郵件\"],\"lfQsvW\":[\"電子郵件集成\"],\"QT/Wo7\":[\"電子郵件或域名已在阻止列表中\"],\"BXEcos\":[\"電子郵件\"],\"eXoH4Q\":[\"員工\"],\"gqv5ZL\":[\"員工\"],\"N2S1rs\":[\"空\"],\"T3juzf\":[\"端點 URL\"],\"lYGfRP\":[\"英語\"],\"/bfFKe\":[\"享受 \",[\"withCreditCardTrialPeriodDuration\"],\" 天的免費試用期\"],\"GpB8YV\":[\"企業\"],\"c3qGJX\":[\"刪除 API 密鑰時出錯:\",[\"err\"]],\"bj7nh3\":[\"重新生成 API 密鑰時出錯:\",[\"err\"]],\"VSQxWH\":[\"切換訂閱 \",[\"to\"],\" 時出錯。\"],\"JLxMta\":[\"建立 Webhook 端點,用於通知異步事件。\"],\"cIgBjB\":[\"從我的電子郵件同步中排除以下人員和域名\"],\"fV7V51\":[\"現有對象\"],\"IZ4o2e\":[\"退出設置\"],\"tXGQvS\":[\"Expected selected node to be a create step node.\"],\"bKBhgb\":[\"體驗\"],\"LxRNPw\":[\"到期\"],\"SkXfL0\":[\"到期日期\"],\"i9qiyR\":[\"到期時間\"],\"GS+Mus\":[\"導出\"],\"ep2rbf\":[\"導出記錄\"],\"q46CjD\":[\"導出為 PDF\"],\"DaGxE0\":[\"導出視圖\"],\"eWCNmu\":[\"Export Workflows\"],\"X9kySA\":[\"收藏夾\"],\"zXgopL\":[\"字段類型\"],\"vF68cg\":[\"字段\"],\"3w/aqw\":[\"字段計數\"],\"o7J4JM\":[\"篩選\"],\"cSev+j\":[\"篩選\"],\"kODvZJ\":[\"First Name\"],\"glx6on\":[\"忘記密碼?\"],\"nLC6tu\":[\"法語\"],\"aTieE0\":[\"從每月到每年\"],\"K04lE5\":[\"從每年到每月\"],\"scmRyR\":[\"完全訪問\"],\"xANKBj\":[\"功能\"],\"Weq9zb\":[\"常規\"],\"DDcvSo\":[\"德語\"],\"NXEW3h\":[\"邀請您的團隊,充分利用您的工作區。\"],\"zSGbaR\":[\"獲取訂閱\"],\"2GT3Hf\":[\"全局\"],\"hWp1MY\":[\"授予 Twenty 支持臨時訪問您的工作區,以便我們為您排除故障或恢復內容。您可以隨時撤銷訪問權限。\"],\"vLyv1R\":[\"隱藏\"],\"B06Bgk\":[\"How you'll be identified on the app.\"],\"XTWO+W\":[\"圖標和名稱\"],\"sJGljQ\":[\"標識符\"],\"j843N3\":[\"如果您丟失了此密鑰,可以重新生成,但請注意,任何使用此密鑰的腳本都需要更新。請鍵入\\\"\",[\"confirmationValue\"],\"\\\"確認。\"],\"NoNwIX\":[\"未啟用\"],\"pZ/USH\":[\"索引\"],\"JE2tjr\":[\"輸入必須為駝峰式大小寫,且不能以數字開頭\"],\"AwUsnG\":[\"實例\"],\"nbfdhU\":[\"集成\"],\"NtFk/Z\":[\"無效的身份驗證提供者\"],\"B2Tpo0\":[\"無效的電子郵件\"],\"/m52AE\":[\"無效的電子郵件或域名\"],\"QdoUFL\":[\"無效的表單值\"],\"0M8+El\":[\"通過電子郵件邀請\"],\"PWIq/W\":[\"通過鏈接邀請\"],\"3athPG\":[\"通過鏈接邀請\"],\"5IfmKA\":[\"邀請鏈接已發送到電子郵件地址\"],\"d+Y+rP\":[\"邀請您的團隊\"],\"Lj7sBL\":[\"意大利語\"],\"dFtidv\":[\"日語\"],\"h6S9Yz\":[\"韓語\"],\"zrpwCd\":[\"實驗室\"],\"vXIe7J\":[\"語言\"],\"UXBCwc\":[\"Last Name\"],\"wL3cK8\":[\"最新\"],\"Kcjbmz\":[\"最新日期\"],\"pQjjYo\":[\"鏈接已複製到剪貼板\"],\"FgAxTj\":[\"登出\"],\"nOhz3x\":[\"登出\"],\"T6YjCk\":[\"管理成員\"],\"4cjU2u\":[\"在此管理您的空間成員\"],\"FyFNsd\":[\"管理您的互聯網帳戶\"],\"36kYu0\":[\"管理您的訂閱\"],\"3Sdni6\":[\"標記為完成\"],\"CK1KXz\":[\"最大\"],\"wlQNTg\":[\"成員\"],\"eTUF28\":[\"最小\"],\"3Siwmw\":[\"更多選項\"],\"iSLA/r\":[\"向左移動\"],\"Ubl2by\":[\"向右移動\"],\"6YtxFj\":[\"名稱\"],\"XSwyCU\":[\"Name can not be empty\"],\"z+6jaZ\":[\"API 密鑰名稱\"],\"J7w8lI\":[\"工作區名稱\"],\"2T8KCk\":[\"導航至下一條記錄\"],\"veSA19\":[\"導航至下一版本\"],\"ZTEho+\":[\"導航至下一個工作流程\"],\"2tw9bo\":[\"導航至上一條記錄\"],\"I+Pm5V\":[\"導航至上一版本\"],\"QVUN3K\":[\"導航至上一個工作流程\"],\"isRobC\":[\"新\"],\"Kcr9Fr\":[\"新帳戶\"],\"o8MyXb\":[\"新密鑰\"],\"j313SZ\":[\"新密鑰\"],\"hFxdey\":[\"新對象\"],\"7vhWI8\":[\"新密碼\"],\"BcCzLv\":[\"新記錄\"],\"2lmOC5\":[\"New Role\"],\"U1DAok\":[\"新 Webhook\"],\"pwenQu\":[\"無連接帳戶\"],\"0uWxPM\":[\"尚未運行工作流程\"],\"AQCvCC\":[\"尚無工作流程版本\"],\"4wUkDk\":[\"非空\"],\"W0i24j\":[\"對象\"],\"B3toQF\":[\"對象\"],\"KNz3EF\":[\"偏離常規路線\"],\"OV5wZZ\":[\"已開啟\"],\"0zpgxV\":[\"選項\"],\"BzEFor\":[\"或\"],\"/IX/7x\":[\"其他\"],\"boJlGf\":[\"頁面未找到\"],\"8ZsakT\":[\"密碼\"],\"BxQ79w\":[\"密碼已更新\"],\"mi6Rel\":[\"密碼重置鏈接已發送至電子郵件\"],\"SrVzRe\":[\"百分比\"],\"yIK1GU\":[\"空百分比\"],\"PWLd4c\":[\"非空百分比\"],\"Bv3y5w\":[\"永久銷毀記錄\"],\"xjWlSJ\":[\"Permanently destroy records\"],\"uKWXhB\":[\"Permanently destroy workflows\"],\"9cDpsw\":[\"Permissions\"],\"N0+GsR\":[\"圖片\"],\"jEw0Mr\":[\"請輸入有效的 URL\"],\"6nsIo3\":[\"請鍵入\\\"\",[\"confirmationValue\"],\"\\\"確認要刪除此 API 密鑰。請注意,任何使用此密鑰的腳本都將停止工作。\"],\"mFZTXr\":[\"請鍵入 \",[\"confirmationText\"],\" 確認要刪除此 Webhook。\"],\"MOERNx\":[\"Portuguese\"],\"0nsqwk\":[\"葡萄牙語 - 巴西\"],\"xtXHeo\":[\"葡萄牙語 - 葡萄牙\"],\"R7+D0/\":[\"Portuguese (Brazil)\"],\"512Uma\":[\"Portuguese (Portugal)\"],\"rdUucN\":[\"預覽\"],\"LcET2C\":[\"隱私政策\"],\"vERlcd\":[\"個人資料\"],\"YJgRqq\":[\"偽英語\"],\"ibPuCP\":[\"閱讀文檔\"],\"v3xM25\":[\"接收包含密碼更新鏈接的電子郵件\"],\"dSCufP\":[\"記錄選擇\"],\"vpZcGd\":[\"重新生成 API 密鑰\"],\"Mwqo5m\":[\"重新生成密鑰\"],\"D+Mv78\":[\"重新生成密鑰\"],\"5icoS1\":[\"版本\"],\"t/YqKh\":[\"移除\"],\"T/pF0Z\":[\"從收藏中移除\"],\"KbS2K9\":[\"重置密碼\"],\"1IWc1n\":[\"重置為\"],\"kx0s+n\":[\"結果\"],\"5dJK4M\":[\"角色\"],\"UX0N2y\":[\"運行工作流程並返回此處查看其執行情況\"],\"A1taO8\":[\"搜索\"],\"8NBMeZ\":[\"用\\\"{commandMenuSearch}\\\"搜索...\"],\"l1/uy2\":[\"搜索字段...\"],\"k7kp5/\":[\"搜索索引...\"],\"7taA9j\":[\"搜索字段\"],\"ofuw3g\":[\"搜索對象...\"],\"IMeaSJ\":[\"搜索記錄\"],\"a3LDKx\":[\"安全\"],\"QREcJS\":[\"查看活動版本\"],\"OpPn5Z\":[\"查看運行\"],\"EtyY4+\":[\"查看版本\"],\"lYhPN0\":[\"查看版本歷史\"],\"xraglu\":[\"選擇要發送到此端點的事件\"],\"AXTJAW\":[\"選擇您偏好的語言\"],\"mjK8F3\":[\"向您的團隊發送邀請電子郵件\"],\"yy5k7a\":[\"服務器管理面板\"],\"V7fgiB\":[\"設置電子郵件可見性,管理您的屏蔽列表等。\"],\"cx14rp\":[\"設置您的域名\"],\"tn41zE\":[\"設置您的子域名\"],\"Tz0i8g\":[\"設置\"],\"Vy9kmk\":[\"分享此鏈接以邀請用戶加入您的工作區\"],\"gWk8gY\":[\"更改字段標籤是否也應更改 API 名稱?\"],\"5lWFkC\":[\"登錄\"],\"e+RpCP\":[\"註冊\"],\"5v3IHX\":[\"單點登錄(SSO)\"],\"6Uau97\":[\"跳過\"],\"f6Hub0\":[\"排序\"],\"65A04M\":[\"西班牙語\"],\"vnS6Rf\":[\"單點登錄\"],\"ku9TbG\":[\"子域\"],\"omhc+7\":[\"子域名已被佔用\"],\"OlC/tU\":[\"子域名不能超過 30 個字符\"],\"ZETwlU\":[\"子域名不能少於 3 個字符\"],\"B5jRKH\":[\"訂閱已切換 \",[\"to\"]],\"AxQiPW\":[\"總和\"],\"XYLcNv\":[\"支援\"],\"9yk9d1\":[\"切換 \",[\"from\"]],\"qi74XZ\":[\"切換 \",[\"to\"]],\"L6Fg36\":[\"切換計費 \",[\"to\"]],\"AtzMpB\":[\"同步字段標籤和 API 名稱\"],\"E3AMmw\":[\"系統設置 - \",[\"systemDateFormatLabel\"]],\"0ZgB1e\":[\"系統設置 - \",[\"systemTimeFormatLabel\"]],\"xowcRf\":[\"服務條款\"],\"NnH3pK\":[\"測試\"],\"bU9B27\":[\"測試工作流程\"],\"2OUtmv\":[\"此字段的描述\"],\"VGZYbZ\":[\"與您的帳戶關聯的電子郵件\"],\"h8mvCd\":[\"此字段的名稱和圖標\"],\"+C8Rdp\":[\"The name of your organization\"],\"L97sPr\":[\"您正在尋找的頁面已經消失或從未存在。讓我們幫助您回到正軌\"],\"uWikAA\":[\"此字段的值\"],\"+69KDk\":[\"此字段的值必須唯一\"],\"ynfkhb\":[\"更新密碼時出現錯誤。\"],\"PmtLRf\":[\"出現問題\"],\"hqCwGc\":[\"此操作無法撤銷。這將永久刪除此用戶並將其從所有任務中移除。\"],\"gWGuHC\":[\"此操作無法撤銷。這將永久刪除您的整個工作區。 <0/> 請輸入您的電子郵件以確認。\"],\"/tr8Uy\":[\"This Role has the following permissions.\"],\"6j5nJX\":[\"This Role is assigned to these workspace member.\"],\"n9nSNJ\":[\"時間格式\"],\"aqMzDX\":[\"至每月\"],\"WXXiXO\":[\"至每年\"],\"PiUt3N\":[\"觸發類型\"],\"IQ5pAL\":[\"觸發類型應為手動 - 當未選擇記錄時\"],\"+zy2Nq\":[\"類型\"],\"U83IeL\":[\"輸入任何內容\"],\"wSXm5S\":[\"唯一\"],\"29VNqC\":[\"Unknown error\"],\"GQCXQS\":[\"無限聯繫人\"],\"ONWvwQ\":[\"上傳\"],\"IagCbF\":[\"網址\"],\"6dMpmz\":[\"用作草稿\"],\"oTTQsc\":[\"只能使用字母、數字和破折號。以字母或數字開頭和結尾\"],\"c6uZUV\":[\"使用我們的 API 或手動添加您的第一個 \",[\"objectLabel\"]],\"7PzzBU\":[\"用戶\"],\"IjyOjp\":[\"用戶未登錄\"],\"fXVIZq\":[\"值\"],\"KANz0G\":[\"查看計費詳情\"],\"6n7jtr\":[\"可視化\"],\"id6ein\":[\"我們支持 10MB 以下的正方形 PNG、JPEG 和 GIF 文件\"],\"ZS7vYp\":[\"我們將為每個新事件向此端點發送 POST 請求\"],\"TRDppN\":[\"Webhook\"],\"v1kQyJ\":[\"Webhooks\"],\"Jt1WNL\":[\"Welcome to\"],\"ke0EDP\":[\"歡迎來到 \",[\"workspaceName\"]],\"C51ilI\":[\"API 密鑰的過期時間。\"],\"leUubq\":[\"按鍵何時禁用\"],\"wvyffT\":[\"無法測試工作流程\"],\"pmUArF\":[\"工作區\"],\"VicISP\":[\"刪除工作區\"],\"Y0Fj4S\":[\"Workspace logo\"],\"CozWO1\":[\"Workspace name\"],\"Q9pNST\":[\"撰寫描述\"],\"3d1wCB\":[\"是\"],\"zSkMV0\":[\"您將立即被收取全年的費用。\"],\"XVnj6K\":[\"您的信用餘額將用於支付每月賬單。\"],\"9ivpwk\":[\"顯示您的姓名\"],\"3RASGN\":[\"Your name as it will be displayed on the app\"],\"YQK8fJ\":[\"Your Workspace\"],\"RhNbPE\":[\"您的工作區將被禁用\"]}")as Messages; \ No newline at end of file diff --git a/packages/twenty-front/src/locales/he-IL.po b/packages/twenty-front/src/locales/he-IL.po new file mode 100644 index 000000000..05da1bf26 --- /dev/null +++ b/packages/twenty-front/src/locales/he-IL.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: he\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Hebrew\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: he\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/hu-HU.po b/packages/twenty-front/src/locales/hu-HU.po new file mode 100644 index 000000000..6d045533d --- /dev/null +++ b/packages/twenty-front/src/locales/hu-HU.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: hu\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Hungarian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: hu\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/it.po b/packages/twenty-front/src/locales/it-IT.po similarity index 92% rename from packages/twenty-front/src/locales/it.po rename to packages/twenty-front/src/locales/it-IT.po index 6a0ea7fbd..e1f32a1e7 100644 --- a/packages/twenty-front/src/locales/it.po +++ b/packages/twenty-front/src/locales/it-IT.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: it\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Italian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: it\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{aggregateLabel} di {fieldLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "Chiave API {apiKeyName}" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. Configura il campo" msgid "24h ({hour24Label})" msgstr "24h ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API e Webhook" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "Chiave API" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "Nome API" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "Chiavi API" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "Account" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "Attiva" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "Attiva workflow" @@ -91,14 +101,14 @@ msgstr "Aggiungi" msgid "Add Field" msgstr "Aggiungi campo" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "Aggiungi provider di identità SSO" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "Aggiungi oggetto" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "Aggiungi provider di identità SSO" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "Aggiungi alla lista di blocco" @@ -109,10 +119,10 @@ msgstr "Aggiungi alla lista di blocco" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "Aggiungi ai preferiti" @@ -133,7 +143,7 @@ msgstr "Tutti" msgid "All ({relationRecordsCount})" msgstr "Tutti ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "Tutti i ruoli" @@ -161,6 +171,28 @@ msgstr "Si è verificato un errore durante l'aggiornamento della password" msgid "An optional description" msgstr "Descrizione opzionale" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "e" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API e Webhook" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "Chiave API" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "Chiavi API" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "Nome API" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "Aspetto" @@ -174,14 +206,22 @@ msgstr "Sei sicuro di voler cambiare l'intervallo di fatturazione?" msgid "Ascending" msgstr "Ascendente" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "Assegna ruoli per specificare le autorizzazioni di accesso di ogni membro" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "Assegnato a" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "Almeno 8 caratteri." @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "Calendari" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "Annulla" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "Annulla piano" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "Annulla in qualsiasi momento" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "Annulla piano" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "Annulla l'abbonamento" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "Cambia {to}" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "Cambia password" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "Cambia {to}" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "Cinese semplificato" @@ -280,14 +320,14 @@ msgstr "Cinese tradizionale" msgid "Choose an object" msgstr "Scegli un oggetto" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "Scegli la tua prova" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "Scegli il tuo fornitore" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "Scegli la tua prova" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "Chiudi" @@ -312,11 +352,11 @@ msgstr "Configura le impostazioni di e-mail e calendario." msgid "Connect a new account to your workspace" msgstr "Collega un nuovo account al tuo workspace" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "Connettiti con Google" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "Connettiti con Microsoft" @@ -329,12 +369,14 @@ msgid "Context" msgstr "Contesto" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "Continua" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "Continua con l'e-mail" @@ -379,22 +421,34 @@ msgstr "Conta non vuoti" msgid "Count unique values" msgstr "Conta valori unici" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "Crea un workflow e torna qui per visualizzarne le versioni" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "Crea chiave API" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "Crea nuovo record" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "Crea webhook" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "Crea un workflow e torna qui per visualizzarne le versioni" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "Crea nuovo record" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "Data e ora" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "Disattiva" @@ -451,14 +505,14 @@ msgstr "Disattiva" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "Disattiva \"Sincronizza etichette oggetti e nomi API\" per impostare un nome API personalizzato" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "Disattiva workflow" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "Disattiva questo campo" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "Disattiva workflow" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "Definisci il nome e la descrizione dell'oggetto" @@ -470,19 +524,15 @@ msgstr "Definisci il nome e la descrizione dell'oggetto" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "Elimina" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "Elimina chiave API" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "Elimina account" msgid "Delete account and all the associated data" msgstr "Elimina l'account e tutti i dati associati" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "Elimina chiave API" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "Elimina record" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "Elimina record" @@ -514,6 +566,14 @@ msgstr "Elimina questa integrazione" msgid "Delete webhook" msgstr "Elimina webhook" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -534,8 +594,10 @@ msgstr "Discendente" msgid "Description" msgstr "Descrizione" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "Distruggi" @@ -549,8 +611,8 @@ msgid "Developers" msgstr "Sviluppatori" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "Scarta bozza" @@ -559,9 +621,9 @@ msgid "Display as relative date" msgstr "Visualizza come data relativa" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "Dominio" @@ -610,9 +672,14 @@ msgstr "L'e-mail o il dominio è già presente nella lista di blocco" msgid "Emails" msgstr "Email" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "dipendenti" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "Dipendenti" + #: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 #: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 @@ -665,8 +732,8 @@ msgid "Exit Settings" msgstr "Esci dalle impostazioni" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "Il nodo selezionato deve essere un nodo di creazione di passi." +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -691,11 +758,11 @@ msgstr "Scade tra" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -703,24 +770,27 @@ msgstr "Esporta" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "Esporta record" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "Esporta in PDF" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "Esporta vista" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "Preferiti" @@ -750,6 +820,10 @@ msgstr "Filtro" msgid "Filters" msgstr "Filtri" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" @@ -758,6 +832,14 @@ msgstr "Hai dimenticato la password?" msgid "French" msgstr "Francese" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "da mensile ad annuale" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "da annuale a mensile" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "Accesso completo" @@ -768,7 +850,7 @@ msgstr "Funzioni" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "Generale" @@ -797,6 +879,10 @@ msgstr "Concedi al supporto Twenty l'accesso temporaneo al tuo spazio di lavoro msgid "Hide" msgstr "Nascondi" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -850,10 +936,6 @@ msgstr "Email o dominio non valido" msgid "Invalid form values" msgstr "Valori del modulo non validi" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "Invita tramite link" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "Invita via e-mail" @@ -862,6 +944,10 @@ msgstr "Invita via e-mail" msgid "Invite by link" msgstr "Invita tramite link" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "Invita tramite link" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "Link di invito inviato agli indirizzi e-mail" @@ -890,6 +976,10 @@ msgstr "Lab" msgid "Language" msgstr "Lingua" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "Ultimo" @@ -964,16 +1054,21 @@ msgstr "Sposta a destra" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "Nome" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -984,7 +1079,7 @@ msgid "Name of your workspace" msgstr "Nome del tuo spazio di lavoro" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "Vai al record successivo" @@ -992,12 +1087,12 @@ msgstr "Vai al record successivo" msgid "Navigate to next version" msgstr "Vai alla versione successiva" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "Vai al workflow successivo" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "Vai al record precedente" @@ -1005,7 +1100,7 @@ msgstr "Vai al record precedente" msgid "Navigate to previous version" msgstr "Vai alla versione precedente" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "Vai al workflow precedente" @@ -1013,6 +1108,14 @@ msgstr "Vai al workflow precedente" msgid "New" msgstr "Nuovo" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "Nuovo account" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "Nuova chiave" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "Nuova chiave" @@ -1025,30 +1128,22 @@ msgstr "Nuovo oggetto" msgid "New Password" msgstr "Nuova password" +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "Nuovo record" + #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "Nuovo ruolo" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "Nuovo Webhook" -#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "Nuovo account" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "Nuova chiave" - -#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 -msgid "New record" -msgstr "Nuovo record" - -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "Nessun account collegato" @@ -1087,6 +1182,10 @@ msgstr "Aperto" msgid "Options" msgstr "Opzioni" +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "o" + #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "Altro" @@ -1120,11 +1219,24 @@ msgstr "Percentuale vuoto" msgid "Percent not empty" msgstr "Percentuale non vuoto" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "Distruggi definitivamente il record" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1142,6 +1254,10 @@ msgstr "Digita \"{confirmationValue}\" per confermare che vuoi eliminare questa msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "Digita {confirmationText} per confermare che vuoi eliminare questo webhook." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "Portoghese - Brasile" @@ -1150,6 +1266,14 @@ msgstr "Portoghese - Brasile" msgid "Portuguese — Portugal" msgstr "Portoghese - Portogallo" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1181,10 +1305,6 @@ msgstr "Ricevi un'e-mail contenente il link per l'aggiornamento della password" msgid "Record Selection" msgstr "Selezione record" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "Rigenera chiave" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1194,6 +1314,10 @@ msgstr "Rigenera una chiave API" msgid "Regenerate key" msgstr "Rigenera chiave" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "Rigenera chiave" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1208,10 +1332,10 @@ msgstr "Rimuovi" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "Rimuovi dai preferiti" @@ -1228,8 +1352,8 @@ msgstr "Reimposta a" msgid "Results" msgstr "Risultati" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "Ruoli" @@ -1238,10 +1362,6 @@ msgstr "Ruoli" msgid "Run a workflow and return here to view its executions" msgstr "Esegui un workflow e torna qui per visualizzare le esecuzioni" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "SSO" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1261,7 +1381,7 @@ msgid "Search an index..." msgstr "Cerca un indice..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "Cerca campi" @@ -1279,25 +1399,25 @@ msgstr "Cerca record" msgid "Security" msgstr "Sicurezza" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "Vedi versione attiva" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "Vedi esecuzioni" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "Vedi versioni" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "Vedi cronologia versioni" @@ -1321,7 +1441,7 @@ msgstr "Pannello di amministrazione del server" msgid "Set email visibility, manage your blocklist and more." msgstr "Imposta la visibilità dell'email, gestisci la tua blocklist e altro." -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "Imposta il nome del dominio" @@ -1344,11 +1464,11 @@ msgstr "Condividi questo link per invitare gli utenti a unirsi al tuo workspace" msgid "Should changing a field's label also change the API name?" msgstr "Cambiare l'etichetta di un campo deve cambiare anche il nome dell'API?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "Accedi" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "Registrati" @@ -1369,6 +1489,10 @@ msgstr "Ordina" msgid "Spanish" msgstr "Spagnolo" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "SSO" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "Sottodominio" @@ -1398,10 +1522,6 @@ msgstr "Somma" msgid "Support" msgstr "Supporto" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "Cambia fatturazione {to}" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "Cambia {from}" @@ -1410,28 +1530,32 @@ msgstr "Cambia {from}" msgid "Switch {to}" msgstr "Cambia {to}" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "Cambia fatturazione {to}" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "Sincronizza etichetta campo e nome API" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "Impostazioni di sistema - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "Impostazioni di sistema - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "Impostazioni di sistema - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "Termini di servizio" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "Test" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "Test Workflow" @@ -1449,6 +1573,10 @@ msgstr "L'email associata al tuo account" msgid "The name and icon of this field" msgstr "Nome e icona di questo campo" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "La pagina che cerchi è sparita o non è mai esistita. Torniamo in carreggiata" @@ -1478,11 +1606,27 @@ msgstr "Questa azione non può essere annullata. Questo eliminerà definitivamen msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "Questa azione non può essere annullata. Questo eliminerà definitivamente l'intero workspace. <0/> Digita la tua email per confermare." +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "Formato ora" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "a mensile" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "a annuale" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "Tipo di trigger" @@ -1495,20 +1639,19 @@ msgstr "Il tipo di trigger deve essere Manuale - quando non sono selezionati rec msgid "Type" msgstr "Tipo" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "Digita qualsiasi cosa" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "URL" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "Unico" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "Contatti illimitati" @@ -1517,6 +1660,11 @@ msgstr "Contatti illimitati" msgid "Upload" msgstr "Carica" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "URL" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1574,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "Benvenuto in {workspaceName}" @@ -1594,9 +1746,9 @@ msgstr "Il workflow non può essere testato" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1617,10 +1769,23 @@ msgstr "Workspace" msgid "Workspace Deletion" msgstr "Eliminazione Workspace" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "Scrivi una descrizione" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "sì" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "Sarai addebitato immediatamente per l'intero anno." @@ -1633,52 +1798,14 @@ msgstr "Il tuo saldo di credito verrà utilizzato per pagare le fatture mensili. msgid "Your name as it will be displayed" msgstr "Il tuo nome come verrà visualizzato" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "Il tuo workspace sarà disabilitato" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "e" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "dipendenti" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "da mensile ad annuale" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "da annuale a mensile" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "o" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "a mensile" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "a annuale" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "sì" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{aggregateLabel} di {fieldLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "Chiave API {apiKeyName}" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/locales/ja.po b/packages/twenty-front/src/locales/ja-JP.po similarity index 92% rename from packages/twenty-front/src/locales/ja.po rename to packages/twenty-front/src/locales/ja-JP.po index bbce067ad..fd510cb54 100644 --- a/packages/twenty-front/src/locales/ja.po +++ b/packages/twenty-front/src/locales/ja-JP.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: ja\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Japanese\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ja\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{fieldLabel}の{aggregateLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "{apiKeyName} APIキー" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. フィールドの設定" msgid "24h ({hour24Label})" msgstr "24時間 ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API & Webhooks" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "APIキー" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "API名" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "APIキー" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "アカウント" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "有効化" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "ワークフローを有効化" @@ -91,14 +101,14 @@ msgstr "追加" msgid "Add Field" msgstr "フィールドを追加" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "SSOアイデンティティプロバイダーを追加" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "オブジェクトを追加" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "SSOアイデンティティプロバイダーを追加" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "ブロックリストに追加" @@ -109,10 +119,10 @@ msgstr "ブロックリストに追加" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "お気に入りに追加" @@ -133,7 +143,7 @@ msgstr "すべて" msgid "All ({relationRecordsCount})" msgstr "すべて ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "すべてのロール" @@ -161,6 +171,28 @@ msgstr "パスワードの更新中にエラーが発生しました" msgid "An optional description" msgstr "任意の説明" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "および" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API & Webhooks" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "APIキー" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "APIキー" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "API名" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "外観" @@ -174,14 +206,22 @@ msgstr "請求間隔を変更してもよろしいですか?" msgid "Ascending" msgstr "昇順" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "各メンバーのアクセス権限を指定するロールを割り当てる" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "担当" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "8文字以上。" @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "カレンダー" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "キャンセル" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "プランをキャンセル" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "いつでもキャンセル可能" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "プランをキャンセル" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "サブスクリプションをキャンセル" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "{to}に変更" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "パスワードを変更" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "{to}に変更" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "中国語(簡体字)" @@ -280,14 +320,14 @@ msgstr "中国語(繁体字)" msgid "Choose an object" msgstr "オブジェクトを選択" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "トライアルを選択" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "プロバイダーを選択" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "トライアルを選択" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "閉じる" @@ -312,11 +352,11 @@ msgstr "メールとカレンダーの設定を行う。" msgid "Connect a new account to your workspace" msgstr "新しいアカウントをワークスペースに接続" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "Googleと接続" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "Microsoftと接続" @@ -329,12 +369,14 @@ msgid "Context" msgstr "コンテキスト" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "続行" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "メールで続行" @@ -379,22 +421,34 @@ msgstr "空でないものをカウント" msgid "Count unique values" msgstr "一意の値をカウント" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "ワークフローを作成し、ここに戻ってそのバージョンを表示" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "APIキーを作成" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "新しいレコードを作成" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "Webhookを作成" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "ワークフローを作成し、ここに戻ってそのバージョンを表示" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "新しいレコードを作成" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "日付と時間" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "無効化" @@ -451,14 +505,14 @@ msgstr "無効化" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "カスタムAPI名を設定するには、「オブジェクトラベルとAPI名の同期」を無効にする" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "ワークフローを無効化" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "このフィールドを無効化" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "ワークフローを無効化" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "オブジェクトの名前と説明を定義" @@ -470,19 +524,15 @@ msgstr "オブジェクトの名前と説明を定義" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "削除" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "APIキーを削除" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "アカウントを削除" msgid "Delete account and all the associated data" msgstr "アカウントと関連データをすべて削除" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "APIキーを削除" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "レコードを削除" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "レコードを削除" @@ -514,6 +566,14 @@ msgstr "この統合を削除" msgid "Delete webhook" msgstr "Webhookを削除" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -534,8 +594,10 @@ msgstr "降順" msgid "Description" msgstr "説明" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "破棄" @@ -549,8 +611,8 @@ msgid "Developers" msgstr "開発者" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "下書きを破棄" @@ -559,9 +621,9 @@ msgid "Display as relative date" msgstr "相対日付で表示" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "ドメイン" @@ -610,6 +672,10 @@ msgstr "メールまたはドメインはすでにブロックリストに登録 msgid "Emails" msgstr "メール" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "社員" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "従業員" @@ -666,8 +732,8 @@ msgid "Exit Settings" msgstr "設定を終了" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "選択されたノードはステップ作成ノードである必要があります。" +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -692,11 +758,11 @@ msgstr "有効期限" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -704,24 +770,27 @@ msgstr "エクスポート" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "レコードをエクスポート" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "PDFにエクスポート" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "ビューをエクスポート" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "お気に入り" @@ -751,6 +820,10 @@ msgstr "フィルター" msgid "Filters" msgstr "フィルター" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "パスワードを忘れましたか?" @@ -759,6 +832,14 @@ msgstr "パスワードを忘れましたか?" msgid "French" msgstr "フランス語" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "月払いから年払いへ" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "年払いから月払いへ" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "フルアクセス" @@ -769,7 +850,7 @@ msgstr "機能" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "一般" @@ -798,6 +879,10 @@ msgstr "Twentyサポートに一時的なアクセスを許可して、問題の msgid "Hide" msgstr "非表示" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -851,10 +936,6 @@ msgstr "無効なメールアドレスまたはドメイン" msgid "Invalid form values" msgstr "無効なフォーム値" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "リンクで招待" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "メールで招待" @@ -863,6 +944,10 @@ msgstr "メールで招待" msgid "Invite by link" msgstr "リンクで招待" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "リンクで招待" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "招待リンクがメールアドレスに送信されました" @@ -891,6 +976,10 @@ msgstr "ラボ" msgid "Language" msgstr "言語" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "最新" @@ -965,16 +1054,21 @@ msgstr "右に移動" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "名前" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -985,7 +1079,7 @@ msgid "Name of your workspace" msgstr "ワークスペースの名前" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "次のレコードに移動" @@ -993,12 +1087,12 @@ msgstr "次のレコードに移動" msgid "Navigate to next version" msgstr "次のバージョンに移動" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "次のワークフローに移動" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "前のレコードに移動" @@ -1006,7 +1100,7 @@ msgstr "前のレコードに移動" msgid "Navigate to previous version" msgstr "前のバージョンに移動" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "前のワークフローに移動" @@ -1014,6 +1108,14 @@ msgstr "前のワークフローに移動" msgid "New" msgstr "新規" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "新しいアカウント" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "新しいキー" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "新しいキー" @@ -1026,30 +1128,22 @@ msgstr "新しいオブジェクト" msgid "New Password" msgstr "新しいパスワード" +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "新しいレコード" + #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "新しい役割" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "新しいWebhook" -#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "新しいアカウント" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "新しいキー" - -#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 -msgid "New record" -msgstr "新しいレコード" - -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "接続されたアカウントがありません" @@ -1088,6 +1182,10 @@ msgstr "開いた" msgid "Options" msgstr "オプション" +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "または" + #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "その他" @@ -1121,11 +1219,24 @@ msgstr "空の割合" msgid "Percent not empty" msgstr "空でない割合" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "レコードを永久に削除" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1143,6 +1254,10 @@ msgstr "\"{confirmationValue}\"と入力して、このAPIキーを削除する msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "{confirmationText}と入力して、このWebhookを削除することを確認してください。" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "ポルトガル語 - ブラジル" @@ -1151,6 +1266,14 @@ msgstr "ポルトガル語 - ブラジル" msgid "Portuguese — Portugal" msgstr "ポルトガル語 - ポルトガル" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1182,10 +1305,6 @@ msgstr "パスワード更新リンクを含むメールを受け取る" msgid "Record Selection" msgstr "レコード選択" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "キーを再生成" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1195,6 +1314,10 @@ msgstr "APIキーを再生成" msgid "Regenerate key" msgstr "キーを再生成" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "キーを再生成" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1209,10 +1332,10 @@ msgstr "削除" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "お気に入りから削除" @@ -1229,8 +1352,8 @@ msgstr "リセット" msgid "Results" msgstr "結果" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "役割" @@ -1239,10 +1362,6 @@ msgstr "役割" msgid "Run a workflow and return here to view its executions" msgstr "ワークフローを実行し、その実行内容を見るためにここに戻る" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "SSO" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1262,7 +1381,7 @@ msgid "Search an index..." msgstr "インデックスを検索..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "フィールドを検索" @@ -1280,25 +1399,25 @@ msgstr "レコードを検索" msgid "Security" msgstr "セキュリティ" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "アクティブバージョンを見る" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "実行を見る" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "バージョンを見る" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "バージョン履歴を見る" @@ -1322,7 +1441,7 @@ msgstr "サーバー管理パネル" msgid "Set email visibility, manage your blocklist and more." msgstr "メールの可視性を設定し、ブロックリストを管理するなど。" -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "ドメイン名を設定" @@ -1345,11 +1464,11 @@ msgstr "このリンクを共有して、ユーザーをワークスペースに msgid "Should changing a field's label also change the API name?" msgstr "フィールドのラベルを変更すると、API名も変更されますか?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "サインイン" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "サインアップ" @@ -1370,6 +1489,10 @@ msgstr "ソート" msgid "Spanish" msgstr "スペイン語" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "SSO" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "サブドメイン" @@ -1399,10 +1522,6 @@ msgstr "合計" msgid "Support" msgstr "サポート" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "請求を{to}に切り替える" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "{from}から切り替える" @@ -1411,28 +1530,32 @@ msgstr "{from}から切り替える" msgid "Switch {to}" msgstr "{to}に切り替える" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "請求を{to}に切り替える" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "フィールドラベルとAPI名を同期する" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "システム設定 - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "システム設定 - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "システム設定 - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "利用規約" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "テスト" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "テストワークフロー" @@ -1450,6 +1573,10 @@ msgstr "アカウントに関連付けられたメール" msgid "The name and icon of this field" msgstr "このフィールドの名前とアイコン" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "お探しのページは存在しないか、削除されました。元のページに戻りましょう" @@ -1479,11 +1606,27 @@ msgstr "この操作は取り消せません。このユーザーは永久に削 msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "この操作は取り消せません。ワークスペース全体が永久に削除されます。<0/> 確認のため、メールアドレスを入力してください" +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "時間形式" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "月払いへ" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "年払いへ" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "トリガータイプ" @@ -1496,20 +1639,19 @@ msgstr "トリガータイプは、レコードが選択されていない場合 msgid "Type" msgstr "タイプ" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "何でも入力" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "URL" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "一意" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "連絡先無制限" @@ -1518,6 +1660,11 @@ msgstr "連絡先無制限" msgid "Upload" msgstr "アップロード" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "URL" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1575,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "{workspaceName}へようこそ" @@ -1595,9 +1746,9 @@ msgstr "ワークフローをテストできません" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1618,10 +1769,23 @@ msgstr "ワークスペース" msgid "Workspace Deletion" msgstr "ワークスペース削除" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "説明を記入" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "はい" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "1年分の料金が即時請求されます。" @@ -1634,52 +1798,14 @@ msgstr "クレジット残高は月々の請求に使用されます。" msgid "Your name as it will be displayed" msgstr "表示名" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "ワークスペースが無効になります" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "および" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "社員" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "月払いから年払いへ" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "年払いから月払いへ" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "または" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "月払いへ" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "年払いへ" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "はい" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{fieldLabel}の{aggregateLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "{apiKeyName} APIキー" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/locales/ko.po b/packages/twenty-front/src/locales/ko-KR.po similarity index 92% rename from packages/twenty-front/src/locales/ko.po rename to packages/twenty-front/src/locales/ko-KR.po index a472b0d6f..c723dfa28 100644 --- a/packages/twenty-front/src/locales/ko.po +++ b/packages/twenty-front/src/locales/ko-KR.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: ko\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Korean\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ko\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{fieldLabel}의 {aggregateLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "{apiKeyName} API 키" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. 필드 구성" msgid "24h ({hour24Label})" msgstr "24시간 ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API 및 웹훅" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "API 키" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "API 이름" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "API 키" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "계정" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "활성화" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "워크플로 활성화" @@ -91,14 +101,14 @@ msgstr "추가" msgid "Add Field" msgstr "필드 추가" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "SSO ID 공급자 추가" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "개체 추가" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "SSO ID 공급자 추가" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "차단 목록에 추가" @@ -109,10 +119,10 @@ msgstr "차단 목록에 추가" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "즐겨찾기에 추가" @@ -133,7 +143,7 @@ msgstr "전체" msgid "All ({relationRecordsCount})" msgstr "전체 ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "모든 역할" @@ -161,6 +171,28 @@ msgstr "비밀번호 업데이트 중 오류가 발생했습니다" msgid "An optional description" msgstr "선택적 설명" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "및" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API 및 웹훅" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "API 키" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "API 키" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "API 이름" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "외관" @@ -174,14 +206,22 @@ msgstr "청구 주기를 변경하시겠습니까?" msgid "Ascending" msgstr "오름차순" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "각 구성원의 접근 권한을 지정하려면 역할을 할당하세요" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "할당됨" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "최소 8자 이상." @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "캘린더" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "취소" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "요금제 취소" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "언제든지 취소 가능" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "요금제 취소" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "구독 취소" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "{to}로 변경" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "비밀번호 변경" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "{to}로 변경" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "중국어 - 간체" @@ -280,14 +320,14 @@ msgstr "중국어 - 번체" msgid "Choose an object" msgstr "개체 선택" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "평가판 선택" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "제공업체 선택" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "평가판 선택" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "닫기" @@ -312,11 +352,11 @@ msgstr "이메일 및 캘린더 설정 구성." msgid "Connect a new account to your workspace" msgstr "새 계정을 워크스페이스에 연결" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "Google과 연결" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "Microsoft와 연결" @@ -329,12 +369,14 @@ msgid "Context" msgstr "컨텍스트" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "계속" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "이메일로 계속" @@ -379,22 +421,34 @@ msgstr "비어 있지 않은 개수" msgid "Count unique values" msgstr "고유 값 개수" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "워크플로를 생성하고 여기로 돌아와 버전을 확인하세요" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "API 키 생성" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "새 레코드 생성" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "Webhook 생성" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "워크플로를 생성하고 여기로 돌아와 버전을 확인하세요" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "새 레코드 생성" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "날짜 및 시간" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "비활성화" @@ -451,14 +505,14 @@ msgstr "비활성화" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "\"개체 레이블 및 API 이름 동기화\"를 비활성화하여 사용자 지정 API 이름을 설정하세요" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "워크플로 비활성화" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "이 필드 비활성화" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "워크플로 비활성화" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "개체의 이름과 설명을 정의하세요" @@ -470,19 +524,15 @@ msgstr "개체의 이름과 설명을 정의하세요" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "삭제" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "API 키 삭제" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "계정 삭제" msgid "Delete account and all the associated data" msgstr "계정 및 모든 관련 데이터 삭제" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "API 키 삭제" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "레코드 삭제" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "레코드 삭제" @@ -514,6 +566,14 @@ msgstr "이 통합 삭제" msgid "Delete webhook" msgstr "Webhook 삭제" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -534,8 +594,10 @@ msgstr "내림차순" msgid "Description" msgstr "설명" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "파기" @@ -549,8 +611,8 @@ msgid "Developers" msgstr "개발자" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "초안 삭제" @@ -559,9 +621,9 @@ msgid "Display as relative date" msgstr "상대 날짜로 표시" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "도메인" @@ -610,6 +672,10 @@ msgstr "이메일 또는 도메인이 이미 차단 목록에 있습니다" msgid "Emails" msgstr "이메일" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "직원" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "직원" @@ -666,8 +732,8 @@ msgid "Exit Settings" msgstr "설정 종료" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "선택한 노드는 생성 단계 노드여야 합니다." +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -692,11 +758,11 @@ msgstr "만료까지 남은 시간" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -704,24 +770,27 @@ msgstr "내보내기" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "레코드 내보내기" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "PDF로 내보내기" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "보기 내보내기" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "즐겨찾기" @@ -751,6 +820,10 @@ msgstr "필터" msgid "Filters" msgstr "필터" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "비밀번호를 잊으셨나요?" @@ -759,6 +832,14 @@ msgstr "비밀번호를 잊으셨나요?" msgid "French" msgstr "프랑스어" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "월간에서 연간으로" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "연간에서 월간으로" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "전체 접근" @@ -769,7 +850,7 @@ msgstr "기능" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "일반" @@ -798,6 +879,10 @@ msgstr "Twenty 지원팀에 임시 접근 권한을 부여하여 문제를 해 msgid "Hide" msgstr "숨기기" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -851,10 +936,6 @@ msgstr "잘못된 이메일 또는 도메인" msgid "Invalid form values" msgstr "잘못된 양식 값" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "링크로 초대" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "이메일로 초대" @@ -863,6 +944,10 @@ msgstr "이메일로 초대" msgid "Invite by link" msgstr "링크로 초대" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "링크로 초대" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "이메일 주소로 전송된 초대 링크" @@ -891,6 +976,10 @@ msgstr "실험실" msgid "Language" msgstr "언어" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "최신" @@ -965,16 +1054,21 @@ msgstr "오른쪽으로 이동" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "이름" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -985,7 +1079,7 @@ msgid "Name of your workspace" msgstr "워크스페이스 이름" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "다음 레코드로 이동" @@ -993,12 +1087,12 @@ msgstr "다음 레코드로 이동" msgid "Navigate to next version" msgstr "다음 버전으로 이동" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "다음 워크플로로 이동" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "이전 레코드로 이동" @@ -1006,7 +1100,7 @@ msgstr "이전 레코드로 이동" msgid "Navigate to previous version" msgstr "이전 버전으로 이동" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "이전 워크플로로 이동" @@ -1014,6 +1108,14 @@ msgstr "이전 워크플로로 이동" msgid "New" msgstr "새로운" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "새 계정" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "새 키" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "새 키" @@ -1026,30 +1128,22 @@ msgstr "새 개체" msgid "New Password" msgstr "새 비밀번호" +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "새 레코드" + #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "새 역할" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "새 Webhook" -#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "새 계정" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "새 키" - -#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 -msgid "New record" -msgstr "새 레코드" - -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "연결된 계정 없음" @@ -1088,6 +1182,10 @@ msgstr "열림" msgid "Options" msgstr "옵션" +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "또는" + #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "기타" @@ -1121,11 +1219,24 @@ msgstr "비어 있는 퍼센트" msgid "Percent not empty" msgstr "비어 있지 않은 퍼센트" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "레코드 영구 삭제" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1143,6 +1254,10 @@ msgstr "\"{confirmationValue}\"을 입력하여 이 API 키를 삭제할 것인 msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "{confirmationText}을 입력하여 이 Webhook을 삭제할 것인지 확인하세요." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "포르투갈어 - 브라질" @@ -1151,6 +1266,14 @@ msgstr "포르투갈어 - 브라질" msgid "Portuguese — Portugal" msgstr "포르투갈어 - 포르투갈" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1182,10 +1305,6 @@ msgstr "비밀번호 업데이트 링크가 포함된 이메일 받기" msgid "Record Selection" msgstr "레코드 선택" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "키 재생성" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1195,6 +1314,10 @@ msgstr "API 키 재생성" msgid "Regenerate key" msgstr "키 재생성" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "키 재생성" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1209,10 +1332,10 @@ msgstr "제거" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "즐겨찾기에서 제거" @@ -1229,8 +1352,8 @@ msgstr "다음으로 재설정" msgid "Results" msgstr "결과" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "역할" @@ -1239,10 +1362,6 @@ msgstr "역할" msgid "Run a workflow and return here to view its executions" msgstr "워크플로를 실행하고 여기로 돌아와 실행 결과를 확인하세요" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "SSO" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1262,7 +1381,7 @@ msgid "Search an index..." msgstr "색인 검색..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "필드 검색" @@ -1280,25 +1399,25 @@ msgstr "레코드 검색" msgid "Security" msgstr "보안" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "활성 버전 보기" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "실행 보기" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "버전 보기" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "버전 기록 보기" @@ -1322,7 +1441,7 @@ msgstr "서버 관리자 패널" msgid "Set email visibility, manage your blocklist and more." msgstr "이메일 공개 여부 설정, 차단 목록 관리 등을 할 수 있습니다." -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "도메인 이름 설정" @@ -1345,11 +1464,11 @@ msgstr "이 링크를 공유하여 사용자를 워크스페이스에 초대하 msgid "Should changing a field's label also change the API name?" msgstr "필드의 레이블을 변경하면 API 이름도 변경되어야 하나요?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "로그인" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "가입하기" @@ -1370,6 +1489,10 @@ msgstr "정렬" msgid "Spanish" msgstr "스페인어" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "SSO" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "하위 도메인" @@ -1399,10 +1522,6 @@ msgstr "합계" msgid "Support" msgstr "지원" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "청구 {to}로 전환" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "{from}에서 전환" @@ -1411,28 +1530,32 @@ msgstr "{from}에서 전환" msgid "Switch {to}" msgstr "{to}로 전환" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "청구 {to}로 전환" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "필드 레이블과 API 이름 동기화" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "시스템 설정 - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "시스템 설정 - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "시스템 설정 - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "서비스 약관" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "테스트" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "테스트 워크플로" @@ -1450,6 +1573,10 @@ msgstr "계정에 연결된 이메일" msgid "The name and icon of this field" msgstr "이 필드의 이름과 아이콘" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "찾고 계신 페이지는 이미 사라졌거나 존재하지 않습니다. 다시 정상화해 드리겠습니다" @@ -1479,11 +1606,27 @@ msgstr "이 작업은 취소할 수 없습니다. 이렇게 하면 사용자가 msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "이 작업은 취소할 수 없습니다. 이렇게 하면 전체 워크스페이스가 영구적으로 삭제됩니다. <0/> 확인하려면 이메일을 입력하세요." +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "시간 형식" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "월간으로" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "연간으로" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "트리거 유형" @@ -1496,20 +1639,19 @@ msgstr "트리거 유형은 수동이어야 합니다 - 선택된 레코드가 msgid "Type" msgstr "유형" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "아무거나 입력하세요" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "URL" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "고유" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "무제한 연락처" @@ -1518,6 +1660,11 @@ msgstr "무제한 연락처" msgid "Upload" msgstr "업로드" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "URL" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1575,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "{workspaceName}에 오신 것을 환영합니다" @@ -1595,9 +1746,9 @@ msgstr "워크플로를 테스트할 수 없음" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1618,10 +1769,23 @@ msgstr "워크스페이스" msgid "Workspace Deletion" msgstr "워크스페이스 삭제" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "설명을 작성하세요" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "예" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "1년 요금이 즉시 청구됩니다." @@ -1634,52 +1798,14 @@ msgstr "크레딧 잔액이 월 청구서 결제에 사용됩니다." msgid "Your name as it will be displayed" msgstr "표시될 이름" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "워크스페이스가 비활성화됩니다" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "및" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "직원" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "월간에서 연간으로" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "연간에서 월간으로" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "또는" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "월간으로" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "연간으로" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "예" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{fieldLabel}의 {aggregateLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "{apiKeyName} API 키" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/locales/nl-NL.po b/packages/twenty-front/src/locales/nl-NL.po new file mode 100644 index 000000000..d54eb94c4 --- /dev/null +++ b/packages/twenty-front/src/locales/nl-NL.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nl\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Dutch\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: nl\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/no-NO.po b/packages/twenty-front/src/locales/no-NO.po new file mode 100644 index 000000000..5eb7ba404 --- /dev/null +++ b/packages/twenty-front/src/locales/no-NO.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: no\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Norwegian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: no\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/pl-PL.po b/packages/twenty-front/src/locales/pl-PL.po new file mode 100644 index 000000000..b35e5c85f --- /dev/null +++ b/packages/twenty-front/src/locales/pl-PL.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: pl\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Polish\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: pl\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +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 564885134..d366746ce 100644 --- a/packages/twenty-front/src/locales/pseudo-en.po +++ b/packages/twenty-front/src/locales/pseudo-en.po @@ -42,6 +42,10 @@ msgstr "" msgid "24h ({hour24Label})" msgstr "" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" msgstr "" @@ -67,11 +71,11 @@ msgstr "" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "" @@ -110,10 +114,10 @@ msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "" @@ -134,7 +138,7 @@ msgstr "" msgid "All ({relationRecordsCount})" msgstr "" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "" @@ -197,14 +201,22 @@ msgstr "" msgid "Ascending" msgstr "" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "" @@ -263,7 +275,7 @@ msgid "Calendars" msgstr "" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" @@ -335,11 +347,11 @@ msgstr "" msgid "Connect a new account to your workspace" msgstr "" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "" @@ -352,12 +364,14 @@ msgid "Context" msgstr "" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "" @@ -410,15 +424,27 @@ msgstr "" msgid "Create API key" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 msgid "Create new record" msgstr "" +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" msgstr "" @@ -466,7 +492,7 @@ msgstr "" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "" @@ -478,7 +504,7 @@ msgstr "" msgid "Deactivate this field" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 msgid "Deactivate Workflow" msgstr "" @@ -493,10 +519,10 @@ msgstr "" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" @@ -516,13 +542,11 @@ msgstr "" msgid "Delete API key" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "" @@ -537,6 +561,14 @@ msgstr "" msgid "Delete webhook" msgstr "" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -557,8 +589,10 @@ msgstr "" msgid "Description" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "" @@ -572,8 +606,8 @@ msgid "Developers" msgstr "" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "" @@ -582,9 +616,9 @@ msgid "Display as relative date" msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "" @@ -693,8 +727,8 @@ msgid "Exit Settings" msgstr "" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "" +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "" #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -719,11 +753,11 @@ msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -731,24 +765,27 @@ msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "" @@ -778,6 +815,10 @@ msgstr "" msgid "Filters" msgstr "" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "" @@ -804,7 +845,7 @@ msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "" @@ -833,6 +874,10 @@ msgstr "" msgid "Hide" msgstr "" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -926,6 +971,10 @@ msgstr "" msgid "Language" msgstr "" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "" @@ -1000,16 +1049,21 @@ msgstr "" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -1020,7 +1074,7 @@ msgid "Name of your workspace" msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "" @@ -1028,12 +1082,12 @@ msgstr "" msgid "Navigate to next version" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "" @@ -1041,7 +1095,7 @@ msgstr "" msgid "Navigate to previous version" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "" @@ -1071,20 +1125,20 @@ msgstr "" #: src/modules/ui/layout/page/components/PageAddButton.tsx:27 #: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 msgid "New record" msgstr "" #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "" +#~ msgid "New Role" +#~ msgstr "" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "" @@ -1160,11 +1214,24 @@ msgstr "" msgid "Percent not empty" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1260,10 +1327,10 @@ msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "" @@ -1280,8 +1347,8 @@ msgstr "" msgid "Results" msgstr "" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "" @@ -1309,7 +1376,7 @@ msgid "Search an index..." msgstr "" #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "" @@ -1327,25 +1394,25 @@ msgstr "" msgid "Security" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "" @@ -1369,7 +1436,7 @@ msgstr "" msgid "Set email visibility, manage your blocklist and more." msgstr "" -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "" @@ -1392,11 +1459,11 @@ msgstr "" msgid "Should changing a field's label also change the API name?" msgstr "" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "" @@ -1479,11 +1546,11 @@ msgid "Terms of Service" msgstr "" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "" @@ -1501,6 +1568,10 @@ msgstr "" msgid "The name and icon of this field" msgstr "" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "" @@ -1530,6 +1601,14 @@ msgstr "" 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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "" @@ -1542,7 +1621,7 @@ msgstr "" msgid "to yearly" msgstr "" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "" @@ -1555,7 +1634,7 @@ msgstr "" msgid "Type" msgstr "" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "" @@ -1564,6 +1643,10 @@ msgstr "" msgid "Unique" msgstr "" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "" @@ -1658,9 +1741,9 @@ msgstr "" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1681,6 +1764,14 @@ msgstr "" msgid "Workspace Deletion" msgstr "" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "" @@ -1702,9 +1793,13 @@ msgstr "" msgid "Your name as it will be displayed" msgstr "" -#: src/pages/auth/SignInUp.tsx:47 -#~ msgid "Your Workspace" -#~ msgstr "" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" diff --git a/packages/twenty-front/src/locales/pt-BR.po b/packages/twenty-front/src/locales/pt-BR.po index d6b49afd3..5c4f5c1c2 100644 --- a/packages/twenty-front/src/locales/pt-BR.po +++ b/packages/twenty-front/src/locales/pt-BR.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: pt-BR\n" +"Language: pt\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Portuguese, Brazilian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: pt-BR\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{aggregateLabel} de {fieldLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "Chave da API {apiKeyName}" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. Configurar campo" msgid "24h ({hour24Label})" msgstr "24h ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API e Webhooks" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "Chave API" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "Nome da API" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "Chaves API" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "Contas" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "Ativar" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "Ativar Workflow" @@ -91,14 +101,14 @@ msgstr "Adicionar" msgid "Add Field" msgstr "Adicionar Campo" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "Adicionar Provedor de Identidade SSO" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "Adicionar Objeto" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "Adicionar Provedor de Identidade SSO" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "Adicionar à Lista de Bloqueio" @@ -109,10 +119,10 @@ msgstr "Adicionar à Lista de Bloqueio" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "Adicionar aos Favoritos" @@ -133,7 +143,7 @@ msgstr "Todos" msgid "All ({relationRecordsCount})" msgstr "Todos ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "Todas as Funções" @@ -161,6 +171,28 @@ msgstr "Ocorreu um erro ao atualizar a senha" msgid "An optional description" msgstr "Descrição opcional" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "e" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API e Webhooks" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "Chave API" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "Chaves API" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "Nome da API" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "Aparência" @@ -174,14 +206,22 @@ msgstr "Tem certeza de que deseja alterar o intervalo de cobrança?" msgid "Ascending" msgstr "Ascendente" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "Atribuir funções para especificar as permissões de acesso de cada membro" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "Atribuído a" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "Pelo menos 8 caracteres." @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "Calendários" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "Cancelar" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "Cancelar Plano" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "Cancele a qualquer momento" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "Cancelar Plano" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "Cancelar sua assinatura" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "Alterar {to}" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "Alterar Senha" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "Alterar {to}" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "Chinês - Simplificado" @@ -280,14 +320,14 @@ msgstr "Chinês - Tradicional" msgid "Choose an object" msgstr "Escolha um Objeto" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "Escolha seu Teste" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "Escolha seu Provedor" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "Escolha seu Teste" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "Fechar" @@ -312,11 +352,11 @@ msgstr "Configure suas configurações de e-mail e calendário." msgid "Connect a new account to your workspace" msgstr "Conecte uma nova conta ao seu espaço de trabalho" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "Conectar com o Google" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "Conectar com a Microsoft" @@ -329,12 +369,14 @@ msgid "Context" msgstr "Contexto" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "Continuar" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "Continuar com o E-mail" @@ -379,22 +421,34 @@ msgstr "Contar não vazios" msgid "Count unique values" msgstr "Contar valores únicos" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "Crie um workflow e retorne aqui para visualizar suas versões" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "Criar Chave API" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "Criar novo registro" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "Criar Webhook" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "Crie um workflow e retorne aqui para visualizar suas versões" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "Criar novo registro" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "Data e Hora" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "Desativar" @@ -451,14 +505,14 @@ msgstr "Desativar" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "Desative \"Sincronizar Rótulos de Objetos e Nomes de API\" para definir um nome de API personalizado" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "Desativar Workflow" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "Desativar este campo" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "Desativar Workflow" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "Defina o nome e a descrição do seu objeto" @@ -470,19 +524,15 @@ msgstr "Defina o nome e a descrição do seu objeto" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "Excluir" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "Excluir Chave API" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "Excluir Conta" msgid "Delete account and all the associated data" msgstr "Excluir a conta e todos os dados associados" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "Excluir Chave API" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "Excluir Registro" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "Excluir Registros" @@ -514,11 +566,18 @@ msgstr "Excluir esta integração" msgid "Delete webhook" msgstr "Excluir Webhook" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" msgstr "Excluir Espaço de Trabalho" -#: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:31 msgid "Delete your whole workspace" @@ -535,8 +594,10 @@ msgstr "Decrescente" msgid "Description" msgstr "Descrição" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "Destruir" @@ -550,8 +611,8 @@ msgid "Developers" msgstr "Desenvolvedores" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "Descartar Rascunho" @@ -560,9 +621,9 @@ msgid "Display as relative date" msgstr "Exibir como data relativa" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "Domínio" @@ -611,6 +672,10 @@ msgstr "O e-mail ou domínio já está na lista de bloqueio" msgid "Emails" msgstr "E-mails" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "colaboradores" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "Funcionários" @@ -667,8 +732,8 @@ msgid "Exit Settings" msgstr "Sair das Configurações" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "O nó selecionado deve ser um nó de etapa de criação." +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -693,11 +758,11 @@ msgstr "Expira em" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -705,24 +770,27 @@ msgstr "Exportar" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "Exportar registros" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "Exportar para PDF" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "Exportar visualização" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "Favoritos" @@ -752,6 +820,10 @@ msgstr "Filtro" msgid "Filters" msgstr "Filtros" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "Esqueceu sua senha?" @@ -760,6 +832,14 @@ msgstr "Esqueceu sua senha?" msgid "French" msgstr "Francês" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "de mensal para anual" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "de anual para mensal" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "Acesso total" @@ -770,7 +850,7 @@ msgstr "Funções" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "Geral" @@ -799,6 +879,10 @@ msgstr "Conceda ao suporte da Twenty acesso temporário ao seu workspace para qu msgid "Hide" msgstr "Ocultar" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -852,10 +936,6 @@ msgstr "E-mail ou domínio inválido" msgid "Invalid form values" msgstr "Valores de formulário inválidos" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "Convidar por Link" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "Convidar por e-mail" @@ -864,6 +944,10 @@ msgstr "Convidar por e-mail" msgid "Invite by link" msgstr "Convidar por link" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "Convidar por Link" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "Link de convite enviado para endereços de e-mail" @@ -892,6 +976,10 @@ msgstr "Laboratório" msgid "Language" msgstr "Idioma" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "Mais recente" @@ -966,16 +1054,21 @@ msgstr "Mover para a direita" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "Nome" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -986,7 +1079,7 @@ msgid "Name of your workspace" msgstr "Nome do seu workspace" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "Navegar para o próximo registro" @@ -994,12 +1087,12 @@ msgstr "Navegar para o próximo registro" msgid "Navigate to next version" msgstr "Navegar para a próxima versão" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "Navegar para o próximo workflow" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "Navegar para o registro anterior" @@ -1007,7 +1100,7 @@ msgstr "Navegar para o registro anterior" msgid "Navigate to previous version" msgstr "Navegar para a versão anterior" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "Navegar para o workflow anterior" @@ -1015,6 +1108,14 @@ msgstr "Navegar para o workflow anterior" msgid "New" msgstr "Novo" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "Nova conta" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "Nova chave" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "Nova Chave" @@ -1027,30 +1128,22 @@ msgstr "Novo Objeto" msgid "New Password" msgstr "Nova Senha" +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "Novo registro" + #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "Nova Função" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "Novo Webhook" -#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "Nova conta" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "Nova chave" - -#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 -msgid "New record" -msgstr "Novo registro" - -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "Nenhuma conta conectada" @@ -1089,6 +1182,10 @@ msgstr "Aberto" msgid "Options" msgstr "Opções" +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "ou" + #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "Outros" @@ -1122,11 +1219,24 @@ msgstr "Porcentagem vazia" msgid "Percent not empty" msgstr "Porcentagem não vazia" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "Destruir permanentemente o registro" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1144,6 +1254,10 @@ msgstr "Digite \"{confirmationValue}\" para confirmar que deseja excluir esta ch msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "Digite {confirmationText} para confirmar que deseja excluir este webhook." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "Português - Brasil" @@ -1152,6 +1266,14 @@ msgstr "Português - Brasil" msgid "Portuguese — Portugal" msgstr "Português - Portugal" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1183,10 +1305,6 @@ msgstr "Receber um e-mail com o link de atualização da senha" msgid "Record Selection" msgstr "Seleção de registros" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "Regenerar chave" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1196,6 +1314,10 @@ msgstr "Regenerar uma chave de API" msgid "Regenerate key" msgstr "Regenerar chave" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "Regenerar chave" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1210,10 +1332,10 @@ msgstr "Remover" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "Remover dos favoritos" @@ -1230,8 +1352,8 @@ msgstr "Redefinir para" msgid "Results" msgstr "Resultados" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "Funções" @@ -1240,10 +1362,6 @@ msgstr "Funções" msgid "Run a workflow and return here to view its executions" msgstr "Execute um workflow e retorne aqui para visualizar suas execuções" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "SSO" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1263,7 +1381,7 @@ msgid "Search an index..." msgstr "Pesquisar um índice..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "Pesquisar campos" @@ -1281,25 +1399,25 @@ msgstr "Pesquisar registros" msgid "Security" msgstr "Segurança" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "Ver versão ativa" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "Ver execuções" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "Ver versões" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "Ver histórico de versões" @@ -1307,7 +1425,7 @@ msgstr "Ver histórico de versões" msgid "Select the events you wish to send to this endpoint" msgstr "Selecione os eventos que deseja enviar para este endpoint" -#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:52 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 msgid "Select your preferred language" msgstr "Selecione seu idioma preferido" @@ -1323,7 +1441,7 @@ msgstr "Painel de Administração do Servidor" msgid "Set email visibility, manage your blocklist and more." msgstr "Defina a visibilidade do e-mail, gerencie sua lista de bloqueio e mais." -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "Defina o nome do seu domínio" @@ -1346,11 +1464,11 @@ msgstr "Compartilhe este link para convidar usuários a participar do seu worksp msgid "Should changing a field's label also change the API name?" msgstr "Alterar o rótulo de um campo também deve alterar o nome da API?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "Fazer login" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "Registrar-se" @@ -1371,6 +1489,10 @@ msgstr "Classificar" msgid "Spanish" msgstr "Espanhol" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "SSO" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "Subdomínio" @@ -1400,10 +1522,6 @@ msgstr "Soma" msgid "Support" msgstr "Suporte" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "Alterar faturamento para {to}" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "Alterar de {from}" @@ -1412,28 +1530,32 @@ msgstr "Alterar de {from}" msgid "Switch {to}" msgstr "Alterar para {to}" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "Alterar faturamento para {to}" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "Sincronizar o rótulo do campo e o nome da API" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "Configurações do sistema - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "Configurações do sistema - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "Configurações do sistema - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "Termos de Serviço" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "Teste" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "Teste de Workflow" @@ -1451,6 +1573,10 @@ msgstr "O e-mail associado à sua conta" msgid "The name and icon of this field" msgstr "O nome e o ícone deste campo" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "A página que você está procurando não existe mais ou nunca existiu. Vamos colocá-lo de volta no caminho certo" @@ -1480,11 +1606,27 @@ msgstr "Essa ação não pode ser desfeita. Isso excluirá permanentemente este msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "Essa ação não pode ser desfeita. Isso excluirá permanentemente todo o seu workspace. <0/> Digite seu e-mail para confirmar." +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "Formato de hora" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "para mensal" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "para anual" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "Tipo de gatilho" @@ -1497,20 +1639,19 @@ msgstr "O tipo de gatilho deve ser Manual - quando nenhum registro é selecionad msgid "Type" msgstr "Tipo" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "Digite qualquer coisa" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "URL" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "Único" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "Contatos ilimitados" @@ -1519,6 +1660,11 @@ msgstr "Contatos ilimitados" msgid "Upload" msgstr "Carregar" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "URL" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1576,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "Bem-vindo ao {workspaceName}" @@ -1596,9 +1746,9 @@ msgstr "O workflow não pode ser testado" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1619,10 +1769,23 @@ msgstr "Workspace" msgid "Workspace Deletion" msgstr "Exclusão do Workspace" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "Insira uma descrição" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "sim" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "A cobrança anual será feita imediatamente." @@ -1635,52 +1798,14 @@ msgstr "Seu saldo de crédito será utilizado para pagar as faturas mensais." msgid "Your name as it will be displayed" msgstr "Seu nome como será mostrado" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "Seu workspace será desativado" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "e" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "colaboradores" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "de mensal para anual" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "de anual para mensal" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "ou" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "para mensal" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "para anual" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "sim" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{aggregateLabel} de {fieldLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "Chave da API {apiKeyName}" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/locales/pt-PT.po b/packages/twenty-front/src/locales/pt-PT.po index cebf7619d..51d225b84 100644 --- a/packages/twenty-front/src/locales/pt-PT.po +++ b/packages/twenty-front/src/locales/pt-PT.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: pt-PT\n" +"Language: pt\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Portuguese\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: pt\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{aggregateLabel} de {fieldLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "{apiKeyName} Chave API" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. Configurar campo" msgid "24h ({hour24Label})" msgstr "24h ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API e Webhooks" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "Chave API" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "Nome da API" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "Chaves API" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "Contas" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "Ativar" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "Ativar Workflow" @@ -91,14 +101,14 @@ msgstr "Adicionar" msgid "Add Field" msgstr "Adicionar Campo" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "Adicionar fornecedor de identidade SSO" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "Adicionar objeto" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "Adicionar fornecedor de identidade SSO" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "Adicionar à lista de bloqueio" @@ -109,10 +119,10 @@ msgstr "Adicionar à lista de bloqueio" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "Adicionar aos favoritos" @@ -133,7 +143,7 @@ msgstr "Todos" msgid "All ({relationRecordsCount})" msgstr "Todos ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "Todos os papéis" @@ -161,6 +171,28 @@ msgstr "Ocorreu um erro ao atualizar a palavra-passe" msgid "An optional description" msgstr "Descrição opcional" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "e" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API e Webhooks" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "Chave API" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "Chaves API" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "Nome da API" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "Aparência" @@ -174,14 +206,22 @@ msgstr "Tem a certeza de que pretende alterar o seu intervalo de faturação?" msgid "Ascending" msgstr "Ascendente" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "Atribuir papéis para especificar as permissões de acesso de cada membro" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "Atribuído a" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "Pelo menos 8 caracteres." @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "Calendários" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "Cancelar" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "Cancelar plano" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "Cancelar a qualquer momento" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "Cancelar plano" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "Cancelar a sua subscrição" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "Alterar {to}" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "Alterar palavra-passe" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "Alterar {to}" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "Chinês - Simplificado" @@ -280,14 +320,14 @@ msgstr "Chinês - Tradicional" msgid "Choose an object" msgstr "Escolher um objeto" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "Escolha o seu teste" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "Escolha o seu fornecedor" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "Escolha o seu teste" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "Fechar" @@ -312,11 +352,11 @@ msgstr "Configure as definições de e-mail e calendário." msgid "Connect a new account to your workspace" msgstr "Ligar uma nova conta ao seu espaço de trabalho" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "Ligar ao Google" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "Ligar à Microsoft" @@ -329,12 +369,14 @@ msgid "Context" msgstr "Contexto" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "Continuar" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "Continuar com o e-mail" @@ -379,22 +421,34 @@ msgstr "Contar não vazios" msgid "Count unique values" msgstr "Contar valores únicos" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "Crie um workflow e volte aqui para ver as suas versões" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "Criar chave API" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "Criar novo registo" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "Criar Webhook" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "Crie um workflow e volte aqui para ver as suas versões" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "Criar novo registo" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "Data e hora" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "Desativar" @@ -451,14 +505,14 @@ msgstr "Desativar" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "Desativar \"Sincronizar etiquetas de objetos e nomes de API\" para definir um nome de API personalizado" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "Desativar Workflow" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "Desativar este campo" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "Desativar Workflow" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "Defina o nome e a descrição do seu objeto" @@ -470,19 +524,15 @@ msgstr "Defina o nome e a descrição do seu objeto" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "Eliminar" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "Eliminar chave API" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "Eliminar conta" msgid "Delete account and all the associated data" msgstr "Eliminar conta e todos os dados associados" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "Eliminar chave API" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "Eliminar registo" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "Eliminar registos" @@ -514,6 +566,14 @@ msgstr "Eliminar esta integração" msgid "Delete webhook" msgstr "Eliminar webhook" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -534,8 +594,10 @@ msgstr "Descendente" msgid "Description" msgstr "Descrição" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "Destruir" @@ -549,8 +611,8 @@ msgid "Developers" msgstr "Programadores" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "Descartar rascunho" @@ -559,9 +621,9 @@ msgid "Display as relative date" msgstr "Exibir como data relativa" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "Domínio" @@ -610,6 +672,10 @@ msgstr "O e-mail ou domínio já está na lista de bloqueio" msgid "Emails" msgstr "E-mails" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "empregados" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "Funcionários" @@ -666,8 +732,8 @@ msgid "Exit Settings" msgstr "Sair das Definições" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "O nó selecionado deve ser um nó de etapa de criação." +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -692,11 +758,11 @@ msgstr "Expira em" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -704,24 +770,27 @@ msgstr "Exportar" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "Exportar registos" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "Exportar para PDF" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "Exportar vista" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "Favoritos" @@ -751,6 +820,10 @@ msgstr "Filtro" msgid "Filters" msgstr "Filtros" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "Esqueceu-se da sua palavra-passe?" @@ -759,6 +832,14 @@ msgstr "Esqueceu-se da sua palavra-passe?" msgid "French" msgstr "Francês" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "de mensal para anual" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "de anual para mensal" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "Acesso total" @@ -769,7 +850,7 @@ msgstr "Funções" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "Geral" @@ -798,6 +879,10 @@ msgstr "Conceda ao suporte do Twenty acesso temporário ao seu espaço de trabal msgid "Hide" msgstr "Esconder" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -851,10 +936,6 @@ msgstr "E-mail ou domínio inválido" msgid "Invalid form values" msgstr "Valores de formulário inválidos" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "Convidar por Link" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "Convidar por e-mail" @@ -863,6 +944,10 @@ msgstr "Convidar por e-mail" msgid "Invite by link" msgstr "Convidar por link" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "Convidar por Link" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "Link de convite enviado para endereços de e-mail" @@ -891,6 +976,10 @@ msgstr "Laboratório" msgid "Language" msgstr "Língua" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "Mais recente" @@ -965,16 +1054,21 @@ msgstr "Mover para a direita" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "Nome" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -985,7 +1079,7 @@ msgid "Name of your workspace" msgstr "Nome do seu espaço de trabalho" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "Navegar para o próximo registo" @@ -993,12 +1087,12 @@ msgstr "Navegar para o próximo registo" msgid "Navigate to next version" msgstr "Navegar para a próxima versão" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "Navegar para o próximo workflow" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "Navegar para o registo anterior" @@ -1006,7 +1100,7 @@ msgstr "Navegar para o registo anterior" msgid "Navigate to previous version" msgstr "Navegar para a versão anterior" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "Navegar para o workflow anterior" @@ -1014,6 +1108,14 @@ msgstr "Navegar para o workflow anterior" msgid "New" msgstr "Novo" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "Nova conta" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "Nova chave" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "Nova Chave" @@ -1026,30 +1128,22 @@ msgstr "Novo Objeto" msgid "New Password" msgstr "Nova Palavra-passe" +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "Novo registo" + #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "Nova Função" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "Novo Webhook" -#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "Nova conta" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "Nova chave" - -#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 -msgid "New record" -msgstr "Novo registo" - -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "Nenhuma conta conectada" @@ -1088,6 +1182,10 @@ msgstr "Aberto" msgid "Options" msgstr "Opções" +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "ou" + #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "Outros" @@ -1121,11 +1219,24 @@ msgstr "Percentagem de vazio" msgid "Percent not empty" msgstr "Percentagem não vazia" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "Destruir permanentemente o registo" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1143,6 +1254,10 @@ msgstr "Digite \"{confirmationValue}\" para confirmar que deseja excluir esta ch msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "Digite {confirmationText} para confirmar que deseja eliminar este webhook." +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "Português — Brasil" @@ -1151,6 +1266,14 @@ msgstr "Português — Brasil" msgid "Portuguese — Portugal" msgstr "Português — Portugal" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1182,10 +1305,6 @@ msgstr "Receber um e-mail com um link para atualização da palavra-passe" msgid "Record Selection" msgstr "Seleção de registos" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "Regenerar chave" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1195,6 +1314,10 @@ msgstr "Regenerar uma chave API" msgid "Regenerate key" msgstr "Regenerar chave" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "Regenerar chave" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1209,10 +1332,10 @@ msgstr "Remover" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "Remover dos favoritos" @@ -1229,8 +1352,8 @@ msgstr "Redefinir para" msgid "Results" msgstr "Resultados" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "Funções" @@ -1239,10 +1362,6 @@ msgstr "Funções" msgid "Run a workflow and return here to view its executions" msgstr "Execute um workflow e volte aqui para ver as suas execuções" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "SSO" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1262,7 +1381,7 @@ msgid "Search an index..." msgstr "Pesquisar um índice..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "Pesquisar campos" @@ -1280,25 +1399,25 @@ msgstr "Pesquisar registos" msgid "Security" msgstr "Segurança" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "Ver versão ativa" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "Ver execuções" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "Ver versões" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "Ver histórico de versões" @@ -1322,7 +1441,7 @@ msgstr "Painel de Administração do Servidor" msgid "Set email visibility, manage your blocklist and more." msgstr "Defina a visibilidade do e-mail, gere a sua lista de bloqueio e muito mais." -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "Defina o nome do seu domínio" @@ -1345,11 +1464,11 @@ msgstr "Partilhe este link para convidar utilizadores a juntarem-se ao seu espa msgid "Should changing a field's label also change the API name?" msgstr "Alterar o rótulo de um campo deve também alterar o nome da API?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "Iniciar sessão" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "Inscrever-se" @@ -1370,6 +1489,10 @@ msgstr "Ordenar" msgid "Spanish" msgstr "Espanhol" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "SSO" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "Subdomínio" @@ -1399,10 +1522,6 @@ msgstr "Soma" msgid "Support" msgstr "Suporte" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "Mudar faturação para {to}" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "Mudar de {from}" @@ -1411,28 +1530,32 @@ msgstr "Mudar de {from}" msgid "Switch {to}" msgstr "Mudar para {to}" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "Mudar faturação para {to}" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "Sincronizar o rótulo do campo e o nome da API" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "Definições do Sistema - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "Definições do Sistema - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "Definições do Sistema - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "Termos de Serviço" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "Teste" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "Testar Workflow" @@ -1450,6 +1573,10 @@ msgstr "O e-mail associado à sua conta" msgid "The name and icon of this field" msgstr "O nome e o ícone deste campo" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "A página que procura não existe ou nunca existiu. Vamos pô-lo de volta no caminho certo" @@ -1479,11 +1606,27 @@ msgstr "Esta ação não pode ser desfeita. Isto eliminará permanentemente este msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "Esta ação não pode ser desfeita. Isto eliminará permanentemente todo o seu espaço de trabalho. <0/> Por favor, digite o seu e-mail para confirmar." +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "Formato da hora" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "para mensal" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "para anual" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "Tipo de Trigger" @@ -1496,20 +1639,19 @@ msgstr "O tipo de trigger deve ser Manual - quando nenhum registo está selecion msgid "Type" msgstr "Tipo" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "Digite qualquer coisa" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "URL" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "Único" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "Contactos ilimitados" @@ -1518,6 +1660,11 @@ msgstr "Contactos ilimitados" msgid "Upload" msgstr "Carregar" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "URL" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1575,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "Bem-vindo ao {workspaceName}" @@ -1595,9 +1746,9 @@ msgstr "O workflow não pode ser testado" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1618,10 +1769,23 @@ msgstr "Espaço de trabalho" msgid "Workspace Deletion" msgstr "Eliminação do espaço de trabalho" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "Escreva uma descrição" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "sim" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "Ser-lhe-á cobrado imediatamente o valor total do ano." @@ -1634,52 +1798,14 @@ msgstr "O seu saldo de crédito será utilizado para pagar as faturas mensais." msgid "Your name as it will be displayed" msgstr "O seu nome como será exibido" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "O seu espaço de trabalho será desativado" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "e" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "empregados" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "de mensal para anual" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "de anual para mensal" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "ou" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "para mensal" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "para anual" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "sim" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{aggregateLabel} de {fieldLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "{apiKeyName} Chave API" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/locales/ro-RO.po b/packages/twenty-front/src/locales/ro-RO.po new file mode 100644 index 000000000..3443b37a1 --- /dev/null +++ b/packages/twenty-front/src/locales/ro-RO.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ro\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Romanian\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ro\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/ru-RU.po b/packages/twenty-front/src/locales/ru-RU.po new file mode 100644 index 000000000..765210b97 --- /dev/null +++ b/packages/twenty-front/src/locales/ru-RU.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ru\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Russian\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ru\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/sr-Cyrl.po b/packages/twenty-front/src/locales/sr-Cyrl.po new file mode 100644 index 000000000..66b2a5832 --- /dev/null +++ b/packages/twenty-front/src/locales/sr-Cyrl.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: sr_Cyrl\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Serbian (Cyrillic)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: sr-Cyrl\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/sv-SE.po b/packages/twenty-front/src/locales/sv-SE.po new file mode 100644 index 000000000..aa0222793 --- /dev/null +++ b/packages/twenty-front/src/locales/sv-SE.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: sv\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Swedish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: sv\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/tr-TR.po b/packages/twenty-front/src/locales/tr-TR.po new file mode 100644 index 000000000..19701cc90 --- /dev/null +++ b/packages/twenty-front/src/locales/tr-TR.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: tr\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Turkish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: tr\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/uk-UA.po b/packages/twenty-front/src/locales/uk-UA.po new file mode 100644 index 000000000..c31fc28c7 --- /dev/null +++ b/packages/twenty-front/src/locales/uk-UA.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: uk\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Ukrainian\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: uk\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/vi-VN.po b/packages/twenty-front/src/locales/vi-VN.po new file mode 100644 index 000000000..14248129e --- /dev/null +++ b/packages/twenty-front/src/locales/vi-VN.po @@ -0,0 +1,1812 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: vi\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Vietnamese\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: vi\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:92 +msgid "1 000 workflow node executions" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:63 +msgid "12h ({hour12Label})" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:198 +msgid "2. Configure field" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:59 +msgid "24h ({hour24Label})" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:156 +msgid "Abort" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:90 +msgid "About" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:40 +#: src/pages/settings/accounts/SettingsAccounts.tsx:46 +msgid "Account" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:321 +#: src/modules/settings/profile/components/DeleteAccount.tsx:45 +msgid "Account Deletion" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:119 +msgid "Accounts" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 +msgid "Activate" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 +msgid "Activate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:190 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:200 +msgid "Active" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:50 +msgid "Active API keys created by you or your team." +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:38 +msgid "Add" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:39 +msgid "Add Field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:144 +msgid "Add object" +msgstr "" + +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 +msgid "Add to blocklist" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:68 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:79 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:105 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 +msgid "Add to favorites" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:16 +msgid "Add your first {objectLabel}" +msgstr "" + +#: src/modules/ui/layout/show-page/components/ShowPageSummaryCard.tsx:157 +msgid "Added {beautifiedCreatedAt}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:19 +msgid "All" +msgstr "" + +#: src/modules/object-record/record-show/record-detail-section/components/RecordDetailRelationSection.tsx:185 +msgid "All ({relationRecordsCount})" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:119 +msgid "All roles" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:135 +msgid "Allow logins through Google's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:146 +msgid "Allow logins through Microsoft's single sign-on functionality." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:168 +msgid "Allow the invitation of new users by sharing an invite link." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:157 +msgid "Allow users to sign in with an email and password." +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:162 +msgid "An error occurred while updating password" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:251 +msgid "An optional description" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 +msgid "Appearance" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:189 +msgid "Are you sure that you want to change your billing interval?" +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Ascending" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:120 +msgid "Assign roles to specify each member's access permissions" +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 +msgid "Assigned to" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 +msgid "At least 8 characters long." +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:73 +msgid "At least one authentication method must be enabled" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:63 +msgid "Authentication" +msgstr "" + +#: src/pages/auth/Authorize.tsx:127 +msgid "Authorize" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:15 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:15 +msgid "Average" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:58 +msgid "Back to content" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:132 +#: src/pages/settings/SettingsBilling.tsx:138 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:154 +msgid "Billing" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:46 +msgid "Blocklist" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:210 +msgid "Book a Call" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:23 +msgid "By using Twenty, you agree to the" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx:73 +msgid "Calculate" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:57 +msgid "Calendar" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:14 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:24 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:83 +msgid "Calendars" +msgstr "" + +#: src/pages/auth/Authorize.tsx:124 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 +#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 +msgid "Cancel" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:152 +msgid "Cancel anytime" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:171 +msgid "Cancel your subscription" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:246 +#: src/modules/settings/profile/components/ChangePassword.tsx:52 +#: src/modules/settings/profile/components/ChangePassword.tsx:58 +msgid "Change Password" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 +msgid "Chinese — Simplified" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:109 +msgid "Chinese — Traditional" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:281 +msgid "Choose an object" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 +msgid "Choose your provider" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "" + +#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 +msgid "Close" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:48 +msgid "Configure an SSO connection" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:58 +msgid "Configure and customize your calendar preferences." +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:43 +msgid "Configure how dates are displayed across the app" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:34 +msgid "Configure your emails and calendar settings." +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:11 +msgid "Connect a new account to your workspace" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 +msgid "Connect with Google" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 +msgid "Connect with Microsoft" +msgstr "" + +#: src/pages/settings/accounts/SettingsAccounts.tsx:56 +msgid "Connected accounts" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:97 +msgid "Context" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 +#: src/pages/onboarding/ChooseYourPlan.tsx:198 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 +msgid "Continue" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 +msgid "Continue with Email" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithGoogle.tsx:26 +msgid "Continue with Google" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithMicrosoft.tsx:22 +msgid "Continue with Microsoft" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:65 +msgid "Copilot" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:217 +msgid "Copy invitation link" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:181 +msgid "Copy this key as it will not be visible again" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:38 +msgid "Count" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:19 +msgid "Count all" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:21 +msgid "Count empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:23 +msgid "Count not empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:25 +msgid "Count unique values" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:56 +msgid "Create API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:72 +msgid "Create Webhook" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:90 +msgid "Custom objects" +msgstr "" + +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:28 +msgid "Customise the fields available in the {objectLabelSingular} views." +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:56 +msgid "Customize Domain" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:64 +msgid "Customize your workspace security" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:341 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:235 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:250 +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:30 +#: src/modules/settings/profile/components/DeleteAccount.tsx:29 +msgid "Danger zone" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:139 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:167 +msgid "Data model" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:41 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:70 +msgid "Data type" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterMenuContent.tsx:89 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:80 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:52 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownContent.tsx:58 +msgid "Date" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:42 +msgid "Date and time" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 +msgid "Deactivate" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:105 +msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 +msgid "Deactivate this field" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:91 +msgid "Define the name and description of your object" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:347 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:241 +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:88 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:59 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 +msgid "Delete" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:332 +#: src/modules/settings/profile/components/DeleteAccount.tsx:37 +#: src/modules/settings/profile/components/DeleteAccount.tsx:53 +msgid "Delete account" +msgstr "" + +#: src/modules/settings/profile/components/DeleteAccount.tsx:30 +msgid "Delete account and all the associated data" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 +msgid "Delete record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 +msgid "Delete records" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:342 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:236 +msgid "Delete this integration" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:356 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:364 +msgid "Delete webhook" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +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/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:201 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:214 +msgid "Descending" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:250 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:239 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:266 +msgid "Description" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 +msgid "Destroy" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:35 +#: src/pages/settings/developers/SettingsDevelopers.tsx:42 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:79 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:220 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:89 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:169 +msgid "Developers" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 +msgid "Discard Draft" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/date/components/SettingsDataModelFieldDateForm.tsx:48 +msgid "Display as relative date" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:51 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 +msgid "Domain" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:108 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:223 +msgid "E.g. backoffice integration" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:29 +msgid "Earliest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:31 +msgid "Earliest date" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:158 +msgid "Edit billing interval" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:146 +msgid "Edit payment method, see your invoices and more" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:52 +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 +#: src/pages/auth/PasswordReset.tsx:206 +msgid "Email" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:89 +msgid "Email integration" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:55 +msgid "Email or domain is already in blocklist" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:77 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:45 +msgid "Emails" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 +msgid "Employees" +msgstr "" + +#: src/modules/object-record/record-inline-cell/components/RecordInlineCellDisplayMode.tsx:86 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:22 +#: src/modules/activities/timeline-activities/rows/main-object/components/EventFieldDiff.tsx:62 +msgid "Empty" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:97 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:238 +msgid "Endpoint URL" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:69 +msgid "English" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:157 +msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:51 +msgid "Enterprise" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:96 +msgid "Error deleting api key: {err}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:148 +msgid "Error regenerating api key: {err}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:124 +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/modules/settings/accounts/components/SettingsAccountsBlocklistSection.tsx:47 +msgid "Exclude the following people and domains from my email sync" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:162 +msgid "Existing objects" +msgstr "" + +#: src/modules/navigation/components/AppNavigationDrawer.tsx:36 +msgid "Exit Settings" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:113 +msgid "Experience" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:219 +msgid "Expiration" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:126 +msgid "Expiration Date" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:259 +msgid "Expires in" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RightDrawerActionMenuDropdown.stories.tsx:78 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:136 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 +msgid "Export" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 +msgid "Export records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 +msgid "Export to PDF" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 +msgid "Export view" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + +#: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 +msgid "Favorites" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:35 +msgid "Field type" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:43 +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:96 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:22 +#: src/modules/settings/data-model/object-details/components/tabs/ObjectFields.tsx:27 +msgid "Fields" +msgstr "" + +#: src/testing/mock-data/tableData.ts:22 +msgid "Fields Count" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:102 +#: src/modules/object-record/object-filter-dropdown/components/SingleEntityObjectFilterDropdownButton.tsx:44 +#: src/modules/object-record/object-filter-dropdown/components/MultipleFiltersButton.tsx:24 +msgid "Filter" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:265 +msgid "Filters" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 +msgid "Forgot your password?" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:73 +msgid "French" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:87 +msgid "Full access" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:199 +msgid "Functions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:29 +#: src/pages/settings/SettingsWorkspace.tsx:35 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 +msgid "General" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:81 +msgid "German" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:184 +msgid "Get the most out of your workspace by inviting your team." +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:148 +msgid "Get your subscription" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:79 +msgid "Global" +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/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:131 +msgid "Hide" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 +msgid "Icon and Name" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:64 +msgid "Identifier" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:273 +msgid "If you’ve lost this key, you can regenerate it, but be aware that any script using this key will need to be updated. Please type\"{confirmationValue}\" to confirm." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:215 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:214 +msgid "Inactive" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:108 +msgid "Indexes" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:106 +msgid "Input must be in camel case and cannot start with a number" +msgstr "" + +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:28 +msgid "Instances" +msgstr "" + +#: src/pages/settings/integrations/SettingsIntegrations.tsx:15 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:21 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:172 +msgid "Integrations" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:57 +msgid "Invalid auth provider" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:21 +msgid "Invalid email" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:44 +#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:50 +msgid "Invalid email or domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:71 +msgid "Invalid form values" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:244 +msgid "Invite by email" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:157 +msgid "Invite by link" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +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:85 +msgid "Italian" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:93 +msgid "Japanese" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:89 +msgid "Korean" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:217 +msgid "Lab" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:51 +msgid "Language" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 +msgid "Latest" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:33 +msgid "Latest date" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:127 +msgid "Link copied to clipboard" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:206 +msgid "Log out" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:228 +msgid "Logout" +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/accounts/SettingsAccounts.tsx:57 +msgid "Manage your internet accounts." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:145 +msgid "Manage your subscription" +msgstr "" + +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuDropdown.stories.tsx:69 +#: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:60 +msgid "Mark as done" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:13 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:13 +msgid "Max" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:143 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:149 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:148 +msgid "Members" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:11 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:11 +msgid "Min" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:38 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:59 +msgid "More options" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:117 +msgid "Move left" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:124 +msgid "Move right" +msgstr "" + +#: src/testing/mock-data/tableData.ts:16 +#: src/pages/settings/SettingsWorkspaceMembers.tsx:177 +#: src/pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsProfile.tsx:35 +#: src/pages/settings/roles/SettingsRoles.tsx:126 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 +#: src/modules/settings/workspace/components/NameField.tsx:91 +msgid "Name" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 +msgid "Name of your API key" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:44 +msgid "Name of your workspace" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 +msgid "Navigate to next record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:95 +msgid "Navigate to next version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 +msgid "Navigate to next workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 +msgid "Navigate to previous record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:85 +msgid "Navigate to previous version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 +msgid "Navigate to previous workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:76 +msgid "New" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 +msgid "New Key" +msgstr "" + +#: src/pages/settings/data-model/SettingsNewObject.tsx:66 +msgid "New Object" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:233 +msgid "New Password" +msgstr "" + +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 +msgid "No connected account" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +msgid "No workflow runs yet" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +msgid "No workflow versions yet" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +msgid "Not empty" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:75 +msgid "Object" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +msgid "Objects" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:47 +msgid "Off the beaten path" +msgstr "" + +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +msgid "Opened" +msgstr "" + +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +msgid "Options" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +msgid "Other" +msgstr "" + +#: src/pages/not-found/NotFound.tsx:41 +msgid "Page Not Found" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +msgid "Password" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:146 +msgid "Password has been updated" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:34 +msgid "Password reset link has been sent to the email" +msgstr "" + +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +msgid "Percent" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +msgid "Percent empty" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +msgid "Percent not empty" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +msgid "Permanently destroy record" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 +msgid "Picture" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +msgid "Please enter a valid URL" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:256 +msgid "Please type \"{confirmationValue}\" to confirm you want to delete this API Key. Be aware that any script using this key will stop working." +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:358 +msgid "Please type {confirmationText} to confirm you want to delete this webhook." +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 +msgid "Portuguese — Brazil" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:97 +msgid "Portuguese — Portugal" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + +#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 +#: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 +msgid "Preview" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:37 +msgid "Privacy Policy" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:19 +#: src/pages/settings/SettingsProfile.tsx:25 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:108 +msgid "Profile" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:115 +msgid "Pseudo-English" +msgstr "" + +#: src/modules/settings/developers/components/SettingsReadDocumentationButton.tsx:9 +msgid "Read documentation" +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:53 +msgid "Receive an email containing password update link" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:69 +msgid "Record Selection" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 +msgid "Regenerate an API key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:280 +msgid "Regenerate key" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "" + +#: src/pages/settings/Releases.tsx:111 +#: src/pages/settings/Releases.tsx:117 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 +msgid "Releases" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:172 +msgid "Remove" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:120 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 +msgid "Remove from favorites" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:177 +msgid "Reset Password" +msgstr "" + +#: src/modules/command-menu/components/ResetContextToSelectionCommandButton.tsx:47 +msgid "Reset to" +msgstr "" + +#: src/modules/command-menu/hooks/useSearchRecords.tsx:227 +msgid "Results" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 +msgid "Roles" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:13 +msgid "Run a workflow and return here to view its executions" +msgstr "" + +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 +msgid "Search" +msgstr "" + +#: src/modules/command-menu/components/CommandMenu.tsx:85 +msgid "Search ''{commandMenuSearch}'' with..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:182 +msgid "Search a field..." +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:117 +msgid "Search an index..." +msgstr "" + +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 +msgid "Search fields" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjects.tsx:166 +msgid "Search for an object..." +msgstr "" + +#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:23 +msgid "Search records" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:33 +#: src/pages/settings/security/SettingsSecurity.tsx:40 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:178 +msgid "Security" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 +msgid "See active version" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 +msgid "See runs" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 +msgid "See versions" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 +msgid "See versions history" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:266 +msgid "Select the events you wish to send to this endpoint" +msgstr "" + +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:52 +msgid "Select your preferred language" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:245 +msgid "Send an invite email to your team" +msgstr "" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:210 +msgid "Server Admin Panel" +msgstr "" + +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:46 +msgid "Set email visibility, manage your blocklist and more." +msgstr "" + +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +msgid "Set the name of your domain" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:37 +msgid "Set the name of your subdomain" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx:102 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:50 +#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx:33 +#: src/modules/navigation/components/MainNavigationDrawerItems.tsx:57 +msgid "Settings" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:158 +msgid "Share this link to invite users to join your workspace" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:212 +msgid "Should changing a field's label also change the API name?" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 +msgid "Sign in" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 +msgid "Sign up" +msgstr "" + +#: src/modules/auth/sign-in-up/components/SignInUpWithSSO.tsx:38 +msgid "Single sign-on (SSO)" +msgstr "" + +#: src/pages/onboarding/InviteTeam.tsx:236 +msgid "Skip" +msgstr "" + +#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx:109 +#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:188 +msgid "Sort" +msgstr "" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:77 +msgid "Spanish" +msgstr "" + +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "" + +#: src/pages/settings/workspace/SettingsSubdomain.tsx:36 +msgid "Subdomain" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:89 +msgid "Subdomain already taken" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:35 +msgid "Subdomain can not be longer than 30 characters" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:34 +msgid "Subdomain can not be shorter than 3 characters" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:120 +msgid "Subscription has been switched {to}" +msgstr "" + +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:17 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:17 +msgid "Sum" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:63 +msgid "Support" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:159 +msgid "Switch {from}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:163 +msgid "Switch {to}" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 +msgid "Synchronize Field Label and API Name" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 +msgid "System settings - {systemDateFormatLabel}" +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "" + +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 +msgid "Terms of Service" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 +msgid "Test" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 +msgid "Test Workflow" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:240 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:267 +msgid "The description of this field" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:43 +msgid "The email associated to your account" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:209 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:240 +msgid "The name and icon of this field" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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/data-model/SettingsObjectFieldEdit.tsx:229 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:252 +msgid "The values of this field" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:224 +msgid "The values of this field must be unique" +msgstr "" + +#: src/pages/auth/PasswordReset.tsx:139 +msgid "There was an error while updating password." +msgstr "" + +#: src/modules/settings/profile/components/ChangePassword.tsx:38 +msgid "There was an issue" +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 assignments." +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/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 +msgid "Time format" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 +msgid "Trigger Type" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:60 +msgid "Trigger type should be Manual - when no record(s) are selected" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:56 +#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:16 +msgid "Type" +msgstr "" + +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 +msgid "Type anything" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 +msgid "Unique" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + +#: src/pages/onboarding/ChooseYourPlan.tsx:88 +msgid "Unlimited contacts" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:164 +msgid "Upload" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 +msgid "Use as draft" +msgstr "" + +#: src/pages/settings/workspace/SettingsDomain.tsx:37 +msgid "Use letter, number and dash only. Start and finish with a letter or a number" +msgstr "" + +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:16 +msgid "Use our API or add your first {objectLabel} manually" +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:22 +#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:29 +#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx:17 +#: src/pages/settings/accounts/SettingsAccounts.tsx:43 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:106 +msgid "User" +msgstr "" + +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:51 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:106 +msgid "User is not logged in" +msgstr "" + +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:223 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:228 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:251 +msgid "Values" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:150 +msgid "View billing details" +msgstr "" + +#: src/modules/settings/data-model/objects/components/SettingsObjectCoverImage.tsx:35 +msgid "Visualize" +msgstr "" + +#: src/modules/ui/input/components/ImageInput.tsx:177 +msgid "We support your square PNGs, JPEGs and GIFs under 10MB" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:98 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:239 +msgid "We will send POST requests to this endpoint for every new event" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:223 +msgid "Webhook" +msgstr "" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:65 +msgid "Webhooks" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + +#: src/pages/auth/SignInUp.tsx:76 +msgid "Welcome to {workspaceName}" +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:127 +msgid "When the API key will expire." +msgstr "" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:220 +msgid "When the key will be disabled" +msgstr "" + +#: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:58 +msgid "Workflow cannot be tested" +msgstr "" + +#: src/pages/settings/SettingsWorkspaceMembers.tsx:146 +#: src/pages/settings/SettingsWorkspace.tsx:32 +#: src/pages/settings/SettingsBilling.tsx:135 +#: src/pages/settings/Releases.tsx:114 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 +#: src/pages/settings/security/SettingsSecurity.tsx:37 +#: src/pages/settings/roles/SettingsRoles.tsx:110 +#: src/pages/settings/integrations/SettingsIntegrations.tsx:18 +#: src/pages/settings/developers/SettingsDevelopers.tsx:39 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:216 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:85 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:165 +#: src/pages/settings/data-model/SettingsObjects.tsx:152 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:175 +#: src/pages/settings/data-model/SettingsNewObject.tsx:69 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:201 +#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:58 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:141 +#: src/modules/favorites/components/WorkspaceFavorites.tsx:19 +msgid "Workspace" +msgstr "" + +#: src/modules/settings/profile/components/DeleteWorkspace.tsx:46 +msgid "Workspace Deletion" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 +msgid "Write a description" +msgstr "" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:48 +msgid "You will be charged immediately for the full year." +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:55 +msgid "Your credit balance will be used to pay the monthly bills." +msgstr "" + +#: src/pages/settings/SettingsProfile.tsx:36 +msgid "Your name as it will be displayed" +msgstr "" + +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + +#: src/pages/settings/SettingsBilling.tsx:172 +msgid "Your workspace will be disabled" +msgstr "" + diff --git a/packages/twenty-front/src/locales/zh-Hans.po b/packages/twenty-front/src/locales/zh-CN.po similarity index 88% rename from packages/twenty-front/src/locales/zh-Hans.po rename to packages/twenty-front/src/locales/zh-CN.po index 52b6ddf76..3ce9ada6e 100644 --- a/packages/twenty-front/src/locales/zh-Hans.po +++ b/packages/twenty-front/src/locales/zh-CN.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: zh-Hans\n" +"Language: zh\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Chinese Simplified\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{aggregateLabel} 的 {fieldLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "{apiKeyName} API 密钥" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. 配置字段" msgid "24h ({hour24Label})" msgstr "24小时 ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API 和 Webhooks" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "API 密钥" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "API 名称" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "API 密钥" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "账户" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "激活" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "激活工作流" @@ -91,14 +101,14 @@ msgstr "添加" msgid "Add Field" msgstr "添加字段" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "添加 SSO 身份提供商" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "添加对象" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "添加 SSO 身份提供商" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "添加到拦截列表" @@ -109,10 +119,10 @@ msgstr "添加到拦截列表" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "添加到收藏夹" @@ -133,7 +143,7 @@ msgstr "全部" msgid "All ({relationRecordsCount})" msgstr "全部 ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "所有角色" @@ -161,6 +171,28 @@ msgstr "更新密码时发生错误" msgid "An optional description" msgstr "可选描述" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "和" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API 和 Webhooks" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "API 密钥" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "API 密钥" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "API 名称" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "外观" @@ -174,14 +206,22 @@ msgstr "您确定要更改计费周期吗?" msgid "Ascending" msgstr "升序" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "分配角色以指定每个成员的访问权限" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "分配给" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "至少 8 个字符。" @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "日历" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "取消" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "取消计划" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "随时取消" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "取消计划" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "取消订阅" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "更改 {to}" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "更改密码" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "更改 {to}" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "简体中文" @@ -280,14 +320,14 @@ msgstr "繁体中文" msgid "Choose an object" msgstr "选择对象" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "选择试用" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "选择服务提供商" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "选择试用" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "关闭" @@ -312,11 +352,11 @@ msgstr "配置电子邮件和日历设置。" msgid "Connect a new account to your workspace" msgstr "将新账户连接到工作区" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "连接 Google" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "连接 Microsoft" @@ -329,12 +369,14 @@ msgid "Context" msgstr "上下文" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "继续" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "继续使用电子邮件" @@ -379,22 +421,34 @@ msgstr "计算非空值" msgid "Count unique values" msgstr "计算唯一值" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "创建工作流并返回此处查看其版本" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "创建 API 密钥" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "创建新记录" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "创建 Webhook" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "创建工作流并返回此处查看其版本" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "创建新记录" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "日期和时间" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "停用" @@ -451,14 +505,14 @@ msgstr "停用" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "停用 \"同步对象标签和 API 名称\" 以设置自定义 API 名称" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "停用工作流" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "停用该字段" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "停用工作流" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "定义对象的名称和描述" @@ -470,19 +524,15 @@ msgstr "定义对象的名称和描述" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "删除" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "删除 API 密钥" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "删除账户" msgid "Delete account and all the associated data" msgstr "删除账户和所有相关数据" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "删除 API 密钥" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "删除记录" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "删除记录" @@ -514,6 +566,14 @@ msgstr "删除此集成" msgid "Delete webhook" msgstr "删除 Webhook" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -534,8 +594,10 @@ msgstr "降序" msgid "Description" msgstr "描述" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "销毁" @@ -549,8 +611,8 @@ msgid "Developers" msgstr "开发者" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "放弃草稿" @@ -559,9 +621,9 @@ msgid "Display as relative date" msgstr "显示为相对日期" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "域" @@ -610,6 +672,10 @@ msgstr "电子邮件或域已在拦截列表中" msgid "Emails" msgstr "电子邮件" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "员工" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "员工" @@ -666,8 +732,8 @@ msgid "Exit Settings" msgstr "退出设置" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "预期所选节点为创建步骤节点。" +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -692,11 +758,11 @@ msgstr "到期时间" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -704,24 +770,27 @@ msgstr "导出" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "导出记录" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "导出为 PDF" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "导出视图" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "收藏夹" @@ -751,6 +820,10 @@ msgstr "过滤" msgid "Filters" msgstr "过滤器" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "忘记密码?" @@ -759,6 +832,14 @@ msgstr "忘记密码?" msgid "French" msgstr "法语" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "从每月到每年" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "从每年到每月" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "完全访问" @@ -769,7 +850,7 @@ msgstr "功能" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "常规" @@ -798,6 +879,10 @@ msgstr "授予 Twenty 支持临时访问您的工作区,以便我们代表您 msgid "Hide" msgstr "隐藏" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -851,10 +936,6 @@ msgstr "无效的电子邮件或域" msgid "Invalid form values" msgstr "无效的表单值" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "通过链接邀请" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "通过电子邮件邀请" @@ -863,6 +944,10 @@ msgstr "通过电子邮件邀请" msgid "Invite by link" msgstr "通过链接邀请" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "通过链接邀请" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "邀请链接已发送到电子邮件地址" @@ -891,6 +976,10 @@ msgstr "实验室" msgid "Language" msgstr "语言" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "最新" @@ -965,27 +1054,32 @@ msgstr "右移" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "名称" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" msgstr "API 密钥名称" -#: src.pages/settings/SettingsWorkspace.tsx:44 +#: src/pages/settings/SettingsWorkspace.tsx:44 msgid "Name of your workspace" msgstr "工作区名称" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "导航到下一条记录" @@ -993,12 +1087,12 @@ msgstr "导航到下一条记录" msgid "Navigate to next version" msgstr "导航到下一个版本" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "导航到下一个工作流" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "导航到上一条记录" @@ -1006,7 +1100,7 @@ msgstr "导航到上一条记录" msgid "Navigate to previous version" msgstr "导航到上一个版本" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "导航到上一个工作流" @@ -1014,6 +1108,14 @@ msgstr "导航到上一个工作流" msgid "New" msgstr "新" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "新账户" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "新密钥" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "新密钥" @@ -1026,112 +1128,121 @@ msgstr "新对象" msgid "New Password" msgstr "新密码" -#: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "新角色" - -#: src.pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 -msgid "New Webhook" -msgstr "新 Webhook" - -#: src.modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "新账户" - -#: src.pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "新密钥" - -#: src.modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src.modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src.modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src.modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 msgid "New record" msgstr "新记录" -#: src.modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/pages/settings/roles/SettingsRoles.tsx:52 +#~ msgid "New Role" +#~ msgstr "New Role" + +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 +msgid "New Webhook" +msgstr "新 Webhook" + +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "无连接账户" -#: src.modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:13 msgid "No workflow runs yet" msgstr "尚未运行工作流" -#: src.modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateTitle.ts:9 msgid "No workflow versions yet" msgstr "尚无工作流版本" -#: src.modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:25 msgid "Not empty" msgstr "非空" -#: src.modules/command-menu/components/CommandMenu.tsx:75 +#: src/modules/command-menu/components/CommandMenu.tsx:75 msgid "Object" msgstr "对象" -#: src.pages/settings/data-model/SettingsObjects.tsx:155 -#: src.pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 -#: src.pages/settings/data-model/SettingsNewObject.tsx:73 -#: src.pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 +#: src/pages/settings/data-model/SettingsObjects.tsx:155 +#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:179 +#: src/pages/settings/data-model/SettingsNewObject.tsx:73 +#: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:205 msgid "Objects" msgstr "对象" -#: src.pages/not-found/NotFound.tsx:47 +#: src/pages/not-found/NotFound.tsx:47 msgid "Off the beaten path" msgstr "偏离常规路线" -#: src.modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 +#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx:53 msgid "Opened" msgstr "已打开" -#: src.modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 +#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdown.tsx:40 msgid "Options" msgstr "选项" -#: src.modules/settings/components/SettingsNavigationDrawerItems.tsx:207 +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "或" + +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "其他" -#: src.pages/not-found/NotFound.tsx:41 +#: src/pages/not-found/NotFound.tsx:41 msgid "Page Not Found" msgstr "页面未找到" -#: src.modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:156 msgid "Password" msgstr "密码" -#: src.pages/auth/PasswordReset.tsx:146 +#: src/pages/auth/PasswordReset.tsx:146 msgid "Password has been updated" msgstr "密码已更新" -#: src.modules/settings/profile/components/ChangePassword.tsx:34 +#: src/modules/settings/profile/components/ChangePassword.tsx:34 msgid "Password reset link has been sent to the email" msgstr "密码重置链接已发送至电子邮件" -#: src.modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 -#: src.modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 +#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterDropdownContent.tsx:66 +#: src/modules/object-record/record-board/record-board-column/components/RecordBoardColumnHeaderAggregateDropdownMenuContent.tsx:45 msgid "Percent" msgstr "百分比" -#: src.modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:27 msgid "Percent empty" msgstr "空百分比" -#: src.modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 +#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts:29 msgid "Percent not empty" msgstr "非空百分比" -#: src.modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src.modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "永久销毁记录" -#: src.pages/settings/SettingsWorkspace.tsx:40 -#: src.pages/settings/SettingsProfile.tsx:30 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + +#: src/pages/settings/SettingsWorkspace.tsx:40 +#: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" msgstr "图片" -#: src.pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:103 msgid "Please enter a valid URL" msgstr "请输入有效的 URL" @@ -1143,6 +1254,10 @@ msgstr "请键入\"{confirmationValue}\"确认要删除此 API 密钥。请注 msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "请输入 {confirmationText} 以确认您要删除此 Webhook。" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "巴西葡萄牙语" @@ -1151,6 +1266,14 @@ msgstr "巴西葡萄牙语" msgid "Portuguese — Portugal" msgstr "葡萄牙葡萄牙语" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1182,10 +1305,6 @@ msgstr "接收包含密码更新链接的电子邮件" msgid "Record Selection" msgstr "记录选择" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "重新生成密钥" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1195,6 +1314,10 @@ msgstr "重新生成 API 密钥" msgid "Regenerate key" msgstr "重新生成密钥" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "重新生成密钥" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1209,10 +1332,10 @@ msgstr "移除" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "从收藏中移除" @@ -1229,8 +1352,8 @@ msgstr "重置为" msgid "Results" msgstr "结果" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "角色" @@ -1239,10 +1362,6 @@ msgstr "角色" msgid "Run a workflow and return here to view its executions" msgstr "运行工作流并返回此处查看其执行情况" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "SSO" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1262,7 +1381,7 @@ msgid "Search an index..." msgstr "搜索索引..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "搜索字段" @@ -1280,25 +1399,25 @@ msgstr "搜索记录" msgid "Security" msgstr "安全" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "查看活动版本" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "查看运行" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "查看版本" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "查看版本历史" @@ -1322,7 +1441,7 @@ msgstr "服务器管理面板" msgid "Set email visibility, manage your blocklist and more." msgstr "设置电子邮件可见性、管理黑名单等。" -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "设置您的域名" @@ -1345,11 +1464,11 @@ msgstr "分享此链接以邀请用户加入您的工作区" msgid "Should changing a field's label also change the API name?" msgstr "更改字段标签是否也要更改 API 名称?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "登录" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "注册" @@ -1370,6 +1489,10 @@ msgstr "排序" msgid "Spanish" msgstr "西班牙语" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "SSO" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "子域名" @@ -1399,10 +1522,6 @@ msgstr "总和" msgid "Support" msgstr "支持" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "切换计费 {to}" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "切换 {from}" @@ -1411,28 +1530,32 @@ msgstr "切换 {from}" msgid "Switch {to}" msgstr "切换 {to}" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "切换计费 {to}" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "同步字段标签和 API 名称" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "系统设置 - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "系统设置 - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "系统设置 - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "服务条款" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "测试" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "测试工作流" @@ -1450,6 +1573,10 @@ msgstr "与您的账户关联的电子邮件" msgid "The name and icon of this field" msgstr "此字段的名称和图标" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "您要找的页面已不存在或从未存在。让我们帮您回到正轨" @@ -1479,11 +1606,27 @@ msgstr "此操作无法撤销。这将永久删除该用户,并将其从所有 msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "此操作无法撤销。这将永久删除您的整个工作区。 <0/> 请输入您的电子邮件以确认。" +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "时间格式" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "切换到每月" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "切换到每年" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "触发类型" @@ -1496,20 +1639,19 @@ msgstr "触发类型应为手动 - 当没有选择记录时" msgid "Type" msgstr "类型" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "输入任何内容" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "URL" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "唯一" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "无限联系人" @@ -1518,6 +1660,11 @@ msgstr "无限联系人" msgid "Upload" msgstr "上传" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "URL" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1575,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "欢迎来到 {workspaceName}" @@ -1595,9 +1746,9 @@ msgstr "无法测试工作流" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1618,10 +1769,23 @@ msgstr "工作区" msgid "Workspace Deletion" msgstr "删除工作区" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "撰写描述" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "是" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "您将立即被收取全年的费用。" @@ -1634,52 +1798,14 @@ msgstr "您的信用余额将用于支付每月账单。" msgid "Your name as it will be displayed" msgstr "显示的姓名" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "您的工作区将被禁用" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "和" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "员工" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "从每月到每年" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "从每年到每月" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "或" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "切换到每月" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "切换到每年" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "是" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{aggregateLabel} 的 {fieldLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "{apiKeyName} API 密钥" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/locales/zh-Hant.po b/packages/twenty-front/src/locales/zh-TW.po similarity index 91% rename from packages/twenty-front/src/locales/zh-Hant.po rename to packages/twenty-front/src/locales/zh-TW.po index 0d49b414b..787426882 100644 --- a/packages/twenty-front/src/locales/zh-Hant.po +++ b/packages/twenty-front/src/locales/zh-TW.po @@ -1,11 +1,35 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-03 20:59+0100\n" +"POT-Creation-Date: 2025-01-30 18:16+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: zh-Hant\n" +"Language: zh\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" +"Last-Translator: \n" +"Language-Team: Chinese Traditional\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: zh-TW\n" +"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n" +"X-Crowdin-File-ID: 29\n" + +#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 +msgid "{aggregateLabel} of {fieldLabel}" +msgstr "{aggregateLabel} 的 {fieldLabel}" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 +msgid "{apiKeyName} API Key" +msgstr "{apiKeyName} API 密鑰" + +#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 +#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 +msgid "{name}" +msgstr "{name}" #: src/pages/onboarding/ChooseYourPlan.tsx:92 msgid "1 000 workflow node executions" @@ -23,23 +47,9 @@ msgstr "2. 配置字段" msgid "24h ({hour24Label})" msgstr "24小時 ({hour24Label})" -#: src/pages/onboarding/ChooseYourPlan.tsx:91 -#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 -msgid "API & Webhooks" -msgstr "API 和 Webhooks" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 -msgid "API Key" -msgstr "API 密鑰" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 -msgid "API Name" -msgstr "API 名稱" - -#: src/pages/settings/developers/SettingsDevelopers.tsx:49 -msgid "API keys" -msgstr "API 密鑰" +#: src/pages/onboarding/CreateWorkspace.tsx:116 +msgid "A shared environment where you will be able to manage your customer relations with your team." +msgstr "" #: src/modules/ui/input/components/ImageInput.tsx:156 msgid "Abort" @@ -66,11 +76,11 @@ msgstr "帳戶" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:99 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:66 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:68 msgid "Activate" msgstr "啟用" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:65 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:67 msgid "Activate Workflow" msgstr "啟用工作流程" @@ -91,14 +101,14 @@ msgstr "添加" msgid "Add Field" msgstr "添加字段" -#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 -msgid "Add SSO Identity Provider" -msgstr "添加 SSO 身份提供者" - #: src/pages/settings/data-model/SettingsObjects.tsx:144 msgid "Add object" msgstr "添加對象" +#: src/modules/settings/security/components/SettingsSSOIdentitiesProvidersListCard.tsx:60 +msgid "Add SSO Identity Provider" +msgstr "添加 SSO 身份提供者" + #: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx:105 msgid "Add to blocklist" msgstr "添加到阻止列表" @@ -109,10 +119,10 @@ msgstr "添加到阻止列表" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:106 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:35 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:36 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:192 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:193 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:68 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:194 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:195 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:69 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:70 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:34 msgid "Add to favorites" msgstr "添加到收藏夾" @@ -133,7 +143,7 @@ msgstr "全部" msgid "All ({relationRecordsCount})" msgstr "全部 ({relationRecordsCount})" -#: src/pages/settings/roles/SettingsRoles.tsx:68 +#: src/pages/settings/roles/SettingsRoles.tsx:119 msgid "All roles" msgstr "所有角色" @@ -161,6 +171,28 @@ msgstr "更新密碼時發生錯誤" msgid "An optional description" msgstr "可選描述" +#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 +msgid "and" +msgstr "和" + +#: src/pages/onboarding/ChooseYourPlan.tsx:91 +#: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:191 +msgid "API & Webhooks" +msgstr "API 和 Webhooks" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:180 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:188 +msgid "API Key" +msgstr "API 密鑰" + +#: src/pages/settings/developers/SettingsDevelopers.tsx:49 +msgid "API keys" +msgstr "API 密鑰" + +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:166 +msgid "API Name" +msgstr "API 名稱" + #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:37 msgid "Appearance" msgstr "外觀" @@ -174,14 +206,22 @@ msgstr "您確定要更改計費間隔嗎?" msgid "Ascending" msgstr "升序" -#: src/pages/settings/roles/SettingsRoles.tsx:69 +#: src/pages/settings/roles/SettingsRoles.tsx:120 msgid "Assign roles to specify each member's access permissions" msgstr "分配角色以指定每個成員的訪問權限" -#: src/pages/settings/roles/SettingsRoles.tsx:36 +#: src/pages/settings/roles/components/RoleAssignment.tsx:14 +msgid "Assigned members" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:129 msgid "Assigned to" msgstr "分配給" +#: src/pages/settings/roles/SettingsRoleEdit.tsx:64 +msgid "Assignment" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpPasswordField.tsx:60 msgid "At least 8 characters long." msgstr "至少 8 個字符。" @@ -240,34 +280,34 @@ msgid "Calendars" msgstr "日曆" #: src/pages/auth/Authorize.tsx:124 -#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:151 +#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx:152 #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:218 #: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx:16 msgid "Cancel" msgstr "取消" -#: src/pages/settings/SettingsBilling.tsx:176 -msgid "Cancel Plan" -msgstr "取消計劃" - #: src/pages/onboarding/ChooseYourPlan.tsx:152 msgid "Cancel anytime" msgstr "隨時取消" +#: src/pages/settings/SettingsBilling.tsx:176 +msgid "Cancel Plan" +msgstr "取消計劃" + #: src/pages/settings/SettingsBilling.tsx:171 msgid "Cancel your subscription" msgstr "取消訂閱" +#: src/pages/settings/SettingsBilling.tsx:193 +msgid "Change {to}" +msgstr "更改 {to}" + #: src/pages/auth/PasswordReset.tsx:246 #: src/modules/settings/profile/components/ChangePassword.tsx:52 #: src/modules/settings/profile/components/ChangePassword.tsx:58 msgid "Change Password" msgstr "更改密碼" -#: src/pages/settings/SettingsBilling.tsx:193 -msgid "Change {to}" -msgstr "更改 {to}" - #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:105 msgid "Chinese — Simplified" msgstr "簡體中文" @@ -280,14 +320,14 @@ msgstr "繁體中文" msgid "Choose an object" msgstr "選擇對象" -#: src/pages/onboarding/ChooseYourPlan.tsx:147 -msgid "Choose your Trial" -msgstr "選擇試用" - #: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:13 msgid "Choose your provider" msgstr "選擇服務提供商" +#: src/pages/onboarding/ChooseYourPlan.tsx:147 +msgid "Choose your Trial" +msgstr "選擇試用" + #: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx:221 msgid "Close" msgstr "關閉" @@ -312,11 +352,11 @@ msgstr "配置您的電子郵件和日曆設置。" msgid "Connect a new account to your workspace" msgstr "將新帳戶連接到工作區" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:42 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:61 msgid "Connect with Google" msgstr "連接到 Google" -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:49 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:70 msgid "Connect with Microsoft" msgstr "連接到 Microsoft" @@ -329,12 +369,14 @@ msgid "Context" msgstr "上下文" #: src/pages/onboarding/InviteTeam.tsx:228 +#: src/pages/onboarding/CreateWorkspace.tsx:154 +#: src/pages/onboarding/CreateProfile.tsx:221 #: src/pages/onboarding/ChooseYourPlan.tsx:198 -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:86 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:92 msgid "Continue" msgstr "繼續" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:69 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:75 msgid "Continue with Email" msgstr "繼續使用電子郵件" @@ -379,22 +421,34 @@ msgstr "計數非空" msgid "Count unique values" msgstr "計數唯一值" +#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 +msgid "Create a workflow and return here to view its versions" +msgstr "創建工作流程並返回此處查看其版本" + #: src/pages/settings/developers/SettingsDevelopers.tsx:56 msgid "Create API key" msgstr "創建 API 密鑰" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:57 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 +msgid "Create new record" +msgstr "創建新記錄" + +#: src/pages/onboarding/CreateProfile.tsx:154 +msgid "Create profile" +msgstr "" + +#: src/pages/settings/roles/SettingsRoles.tsx:193 +msgid "Create Role" +msgstr "" + #: src/pages/settings/developers/SettingsDevelopers.tsx:72 msgid "Create Webhook" msgstr "創建 Webhook" -#: src/modules/object-record/record-table/empty-state/utils/getEmptyStateSubTitle.ts:9 -msgid "Create a workflow and return here to view its versions" -msgstr "創建工作流程並返回此處查看其版本" - -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:55 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:44 -msgid "Create new record" -msgstr "創建新記錄" +#: src/pages/onboarding/CreateWorkspace.tsx:113 +msgid "Create your workspace" +msgstr "" #: src/pages/onboarding/ChooseYourPlan.tsx:90 msgid "Custom objects" @@ -443,7 +497,7 @@ msgstr "日期和時間" #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:259 #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:116 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:81 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:83 msgid "Deactivate" msgstr "停用" @@ -451,14 +505,14 @@ msgstr "停用" msgid "Deactivate \"Synchronize Objects Labels and API Names\" to set a custom API name" msgstr "停用 \"同步對象標籤和 API 名稱\" 以設置自定義 API 名稱" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:80 -msgid "Deactivate Workflow" -msgstr "停用工作流程" - #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:251 msgid "Deactivate this field" msgstr "停用此字段" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:82 +msgid "Deactivate Workflow" +msgstr "停用工作流程" + #: src/pages/settings/data-model/SettingsNewObject.tsx:91 msgid "Define the name and description of your object" msgstr "定義對象的名稱和描述" @@ -470,19 +524,15 @@ msgstr "定義對象的名稱和描述" #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:31 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBarEntry.stories.tsx:45 #: src/modules/action-menu/components/__stories__/RecordIndexActionMenuBar.stories.tsx:61 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:223 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:239 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:225 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:241 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:100 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:116 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:60 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:76 msgid "Delete" msgstr "刪除" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 -msgid "Delete API key" -msgstr "刪除 API 密鑰" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:332 #: src/modules/settings/profile/components/DeleteAccount.tsx:37 #: src/modules/settings/profile/components/DeleteAccount.tsx:53 @@ -493,13 +543,15 @@ msgstr "刪除帳戶" msgid "Delete account and all the associated data" msgstr "刪除帳戶及所有相關數據" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:222 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:98 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:254 +msgid "Delete API key" +msgstr "刪除 API 密鑰" + +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:99 msgid "Delete record" msgstr "刪除記錄" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:238 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:114 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:115 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:75 msgid "Delete records" msgstr "刪除記錄" @@ -514,6 +566,14 @@ msgstr "刪除此集成" msgid "Delete webhook" msgstr "刪除 Webhook" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:224 +msgid "Delete workflow" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:240 +msgid "Delete workflows" +msgstr "" + #: src/modules/settings/profile/components/DeleteWorkspace.tsx:36 #: src/modules/settings/profile/components/DeleteWorkspace.tsx:54 msgid "Delete workspace" @@ -534,8 +594,10 @@ msgstr "降序" msgid "Description" msgstr "描述" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:252 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:254 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:296 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:193 msgid "Destroy" msgstr "銷毀" @@ -549,8 +611,8 @@ msgid "Developers" msgstr "開發人員" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:80 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:95 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:96 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:97 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:98 msgid "Discard Draft" msgstr "放棄草稿" @@ -559,9 +621,9 @@ msgid "Display as relative date" msgstr "顯示為相對日期" #: src/pages/settings/SettingsWorkspace.tsx:51 -#: src/pages/settings/workspace/SettingsHostname.tsx:121 -#: src/pages/settings/workspace/SettingsDomain.tsx:109 -#: src/pages/settings/workspace/SettingsDomain.tsx:119 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:115 +#: src/pages/settings/workspace/SettingsDomain.tsx:125 msgid "Domain" msgstr "域名" @@ -610,6 +672,10 @@ msgstr "電子郵件或域名已在阻止列表中" msgid "Emails" msgstr "電子郵件" +#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 +msgid "employees" +msgstr "員工" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:137 msgid "Employees" msgstr "員工" @@ -666,8 +732,8 @@ msgid "Exit Settings" msgstr "退出設置" #: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:59 -msgid "Expected selected node to be a create step node." -msgstr "預期所選節點為創建步驟節點。" +#~ msgid "Expected selected node to be a create step node." +#~ msgstr "Expected selected node to be a create step node." #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:26 #: src/pages/settings/profile/appearance/components/SettingsExperience.tsx:32 @@ -692,11 +758,11 @@ msgstr "到期時間" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:149 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:88 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:101 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:268 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:281 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:270 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:283 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:129 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:142 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:89 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:102 msgid "Export" @@ -704,24 +770,27 @@ msgstr "導出" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:135 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:87 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:267 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:128 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:88 msgid "Export records" msgstr "導出記錄" -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:56 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:57 msgid "Export to PDF" msgstr "導出為 PDF" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:148 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:100 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:280 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:282 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:141 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:101 msgid "Export view" msgstr "導出視圖" +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:269 +msgid "Export Workflows" +msgstr "" + #: src/modules/favorites/components/CurrentWorkspaceMemberFavoritesFolders.tsx:59 msgid "Favorites" msgstr "收藏夾" @@ -751,6 +820,10 @@ msgstr "篩選" msgid "Filters" msgstr "篩選" +#: src/pages/onboarding/CreateProfile.tsx:180 +msgid "First Name" +msgstr "" + #: src/modules/auth/sign-in-up/components/SignInUpWorkspaceScopeForm.tsx:58 msgid "Forgot your password?" msgstr "忘記密碼?" @@ -759,6 +832,14 @@ msgstr "忘記密碼?" msgid "French" msgstr "法語" +#: src/pages/settings/SettingsBilling.tsx:47 +msgid "from monthly to yearly" +msgstr "從每月到每年" + +#: src/pages/settings/SettingsBilling.tsx:54 +msgid "from yearly to monthly" +msgstr "從每年到每月" + #: src/pages/onboarding/ChooseYourPlan.tsx:87 msgid "Full access" msgstr "完全訪問" @@ -769,7 +850,7 @@ msgstr "功能" #: src/pages/settings/SettingsWorkspace.tsx:29 #: src/pages/settings/SettingsWorkspace.tsx:35 -#: src/pages/settings/workspace/SettingsDomain.tsx:116 +#: src/pages/settings/workspace/SettingsDomain.tsx:122 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:143 msgid "General" msgstr "常規" @@ -798,6 +879,10 @@ msgstr "授予 Twenty 支持臨時訪問您的工作區,以便我們為您排 msgid "Hide" msgstr "隱藏" +#: src/pages/onboarding/CreateProfile.tsx:157 +msgid "How you'll be identified on the app." +msgstr "" + #: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx:208 #: src/pages/settings/data-model/SettingsObjectNewField/SettingsObjectNewFieldConfigure.tsx:239 msgid "Icon and Name" @@ -851,10 +936,6 @@ msgstr "無效的電子郵件或域名" msgid "Invalid form values" msgstr "無效的表單值" -#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 -msgid "Invite by Link" -msgstr "通過鏈接邀請" - #: src/pages/settings/SettingsWorkspaceMembers.tsx:244 msgid "Invite by email" msgstr "通過電子郵件邀請" @@ -863,10 +944,13 @@ msgstr "通過電子郵件邀請" msgid "Invite by link" msgstr "通過鏈接邀請" +#: src/modules/settings/security/components/SettingsSecurityOptionsList.tsx:167 +msgid "Invite by Link" +msgstr "通過鏈接邀請" + #: src/pages/onboarding/InviteTeam.tsx:152 msgid "Invite link sent to email addresses" msgstr "邀請鏈接已發送到電子郵件地址" -msgstr "向电子邮件地址发送邀请链接" #: src/pages/onboarding/InviteTeam.tsx:181 msgid "Invite your team" @@ -892,6 +976,10 @@ msgstr "實驗室" msgid "Language" msgstr "語言" +#: src/pages/onboarding/CreateProfile.tsx:202 +msgid "Last Name" +msgstr "" + #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:31 msgid "Latest" msgstr "最新" @@ -966,16 +1054,21 @@ msgstr "向右移動" #: src/pages/settings/SettingsWorkspaceMembers.tsx:177 #: src/pages/settings/SettingsWorkspace.tsx:44 #: src/pages/settings/SettingsProfile.tsx:35 -#: src/pages/settings/roles/SettingsRoles.tsx:31 +#: src/pages/settings/roles/SettingsRoles.tsx:126 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:29 #: src/pages/settings/data-model/SettingsObjectFieldTable.tsx:58 #: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts:10 +#: src/pages/onboarding/CreateProfile.tsx:166 #: src/modules/settings/workspace/components/NameField.tsx:91 msgid "Name" msgstr "名稱" +#: src/pages/onboarding/CreateWorkspace.tsx:49 +msgid "Name can not be empty" +msgstr "" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:106 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:209 msgid "Name of your API key" @@ -986,7 +1079,7 @@ msgid "Name of your workspace" msgstr "工作區名稱" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:76 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:180 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:181 msgid "Navigate to next record" msgstr "導航至下一條記錄" @@ -994,12 +1087,12 @@ msgstr "導航至下一條記錄" msgid "Navigate to next version" msgstr "導航至下一版本" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:182 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:184 msgid "Navigate to next workflow" msgstr "導航至下一個工作流程" #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:65 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:169 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:170 msgid "Navigate to previous record" msgstr "導航至上一條記錄" @@ -1007,7 +1100,7 @@ msgstr "導航至上一條記錄" msgid "Navigate to previous version" msgstr "導航至上一版本" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:172 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:174 msgid "Navigate to previous workflow" msgstr "導航至上一個工作流程" @@ -1015,6 +1108,14 @@ msgstr "導航至上一個工作流程" msgid "New" msgstr "新" +#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 +msgid "New account" +msgstr "新帳戶" + +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 +msgid "New key" +msgstr "新密鑰" + #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:92 msgid "New Key" msgstr "新密鑰" @@ -1027,30 +1128,22 @@ msgstr "新對象" msgid "New Password" msgstr "新密碼" +#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 +#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:58 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:46 +msgid "New record" +msgstr "新記錄" + #: src/pages/settings/roles/SettingsRoles.tsx:52 -msgid "New Role" -msgstr "新角色" +#~ msgid "New Role" +#~ msgstr "New Role" #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:82 msgid "New Webhook" msgstr "新 Webhook" -#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx:10 -msgid "New account" -msgstr "新帳戶" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx:82 -msgid "New key" -msgstr "新密鑰" - -#: src/modules/ui/layout/page/components/PageAddButton.tsx:27 -#: src/modules/ui/layout/page/components/PageAddButton.tsx:29 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:45 -msgid "New record" -msgstr "新記錄" - -#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:38 +#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx:56 msgid "No connected account" msgstr "無連接帳戶" @@ -1089,6 +1182,10 @@ msgstr "已開啟" msgid "Options" msgstr "選項" +#: src/pages/onboarding/InviteTeam.tsx:213 +msgid "or" +msgstr "或" + #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:207 msgid "Other" msgstr "其他" @@ -1122,11 +1219,24 @@ msgstr "空百分比" msgid "Percent not empty" msgstr "非空百分比" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:251 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:153 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:253 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:154 msgid "Permanently destroy record" msgstr "永久銷毀記錄" +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:192 +msgid "Permanently destroy records" +msgstr "" + +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:295 +msgid "Permanently destroy workflows" +msgstr "" + +#: src/pages/settings/roles/SettingsRoleEdit.tsx:70 +#: src/pages/settings/roles/components/RolePermissions.tsx:14 +msgid "Permissions" +msgstr "" + #: src/pages/settings/SettingsWorkspace.tsx:40 #: src/pages/settings/SettingsProfile.tsx:30 msgid "Picture" @@ -1144,6 +1254,10 @@ msgstr "請鍵入\"{confirmationValue}\"確認要刪除此 API 密鑰。請注 msgid "Please type {confirmationText} to confirm you want to delete this webhook." msgstr "請鍵入 {confirmationText} 確認要刪除此 Webhook。" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:66 +#~ msgid "Portuguese" +#~ msgstr "Portuguese" + #: src/pages/settings/profile/appearance/components/LocalePicker.tsx:101 msgid "Portuguese — Brazil" msgstr "葡萄牙語 - 巴西" @@ -1152,6 +1266,14 @@ msgstr "葡萄牙語 - 巴西" msgid "Portuguese — Portugal" msgstr "葡萄牙語 - 葡萄牙" +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:94 +#~ msgid "Portuguese (Brazil)" +#~ msgstr "Portuguese (Brazil)" + +#: src/pages/settings/profile/appearance/components/LocalePicker.tsx:90 +#~ msgid "Portuguese (Portugal)" +#~ msgstr "Portuguese (Portugal)" + #: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectSettingsFormCard.tsx:52 #: src/modules/settings/data-model/components/SettingsDataModelPreviewFormCard.tsx:30 msgid "Preview" @@ -1183,10 +1305,6 @@ msgstr "接收包含密碼更新鏈接的電子郵件" msgid "Record Selection" msgstr "記錄選擇" -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 -msgid "Regenerate Key" -msgstr "重新生成密鑰" - #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:189 #: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:271 msgid "Regenerate an API key" @@ -1196,6 +1314,10 @@ msgstr "重新生成 API 密鑰" msgid "Regenerate key" msgstr "重新生成密鑰" +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:193 +msgid "Regenerate Key" +msgstr "重新生成密鑰" + #: src/pages/settings/Releases.tsx:111 #: src/pages/settings/Releases.tsx:117 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:223 @@ -1210,10 +1332,10 @@ msgstr "移除" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:121 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:50 #: src/modules/action-menu/actions/record-actions/constants/WorkflowRunsActionsConfig.ts:51 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:207 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:208 -#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:83 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:209 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:210 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:84 +#: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV2.ts:85 #: src/modules/action-menu/actions/record-actions/constants/DefaultActionsConfigV1.ts:47 msgid "Remove from favorites" msgstr "從收藏中移除" @@ -1230,8 +1352,8 @@ msgstr "重置為" msgid "Results" msgstr "結果" -#: src/pages/settings/roles/SettingsRoles.tsx:48 -#: src/pages/settings/roles/SettingsRoles.tsx:62 +#: src/pages/settings/roles/SettingsRoles.tsx:107 +#: src/pages/settings/roles/SettingsRoles.tsx:113 #: src/modules/settings/components/SettingsNavigationDrawerItems.tsx:161 msgid "Roles" msgstr "角色" @@ -1240,10 +1362,6 @@ msgstr "角色" msgid "Run a workflow and return here to view its executions" msgstr "運行工作流程並返回此處查看其執行情況" -#: src/pages/settings/security/SettingsSecurity.tsx:47 -msgid "SSO" -msgstr "單點登錄" - #: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx:44 #: src/modules/navigation/components/MainNavigationDrawerItems.tsx:51 #: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.ts:24 @@ -1263,7 +1381,7 @@ msgid "Search an index..." msgstr "搜索索引..." #: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx:219 -#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:185 +#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownFilterSelect.tsx:184 msgid "Search fields" msgstr "搜索字段" @@ -1281,25 +1399,25 @@ msgstr "搜索記錄" msgid "Security" msgstr "安全" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:110 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:111 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:112 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:113 msgid "See active version" msgstr "查看活動版本" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:55 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:56 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:125 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:126 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:127 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:128 msgid "See runs" msgstr "查看運行" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:70 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:141 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:143 msgid "See versions" msgstr "查看版本" #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:69 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:140 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:142 msgid "See versions history" msgstr "查看版本歷史" @@ -1323,7 +1441,7 @@ msgstr "服務器管理面板" msgid "Set email visibility, manage your blocklist and more." msgstr "設置電子郵件可見性,管理您的屏蔽列表等。" -#: src/pages/settings/workspace/SettingsHostname.tsx:121 +#: src/pages/settings/workspace/SettingsHostname.tsx:115 msgid "Set the name of your domain" msgstr "設置您的域名" @@ -1346,11 +1464,11 @@ msgstr "分享此鏈接以邀請用戶加入您的工作區" msgid "Should changing a field's label also change the API name?" msgstr "更改字段標籤是否也應更改 API 名稱?" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:76 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:82 msgid "Sign in" msgstr "登錄" -#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:83 +#: src/modules/auth/sign-in-up/components/SignInUpWithCredentials.tsx:89 msgid "Sign up" msgstr "註冊" @@ -1371,6 +1489,10 @@ msgstr "排序" msgid "Spanish" msgstr "西班牙語" +#: src/pages/settings/security/SettingsSecurity.tsx:47 +msgid "SSO" +msgstr "單點登錄" + #: src/pages/settings/workspace/SettingsSubdomain.tsx:36 msgid "Subdomain" msgstr "子域" @@ -1400,10 +1522,6 @@ msgstr "總和" msgid "Support" msgstr "支援" -#: src/pages/settings/SettingsBilling.tsx:187 -msgid "Switch billing {to}" -msgstr "切換計費 {to}" - #: src/pages/settings/SettingsBilling.tsx:159 msgid "Switch {from}" msgstr "切換 {from}" @@ -1412,28 +1530,32 @@ msgstr "切換 {from}" msgid "Switch {to}" msgstr "切換 {to}" +#: src/pages/settings/SettingsBilling.tsx:187 +msgid "Switch billing {to}" +msgstr "切換計費 {to}" + #: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:211 msgid "Synchronize Field Label and API Name" msgstr "同步字段標籤和 API 名稱" -#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 -msgid "System Settings - {systemTimeFormatLabel}" -msgstr "系統設置 - {systemTimeFormatLabel}" - #: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx:42 msgid "System settings - {systemDateFormatLabel}" msgstr "系統設置 - {systemDateFormatLabel}" +#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:55 +msgid "System Settings - {systemTimeFormatLabel}" +msgstr "系統設置 - {systemTimeFormatLabel}" + #: src/modules/auth/sign-in-up/components/FooterNote.tsx:29 msgid "Terms of Service" msgstr "服務條款" #: src/modules/workflow/components/RecordShowPageWorkflowHeader.tsx:50 -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:156 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:158 msgid "Test" msgstr "測試" -#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:155 +#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.ts:157 msgid "Test Workflow" msgstr "測試工作流程" @@ -1451,6 +1573,10 @@ msgstr "與您的帳戶關聯的電子郵件" msgid "The name and icon of this field" msgstr "此字段的名稱和圖標" +#: src/pages/onboarding/CreateWorkspace.tsx:129 +msgid "The name of your organization" +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 "您正在尋找的頁面已經消失或從未存在。讓我們幫助您回到正軌" @@ -1480,11 +1606,27 @@ msgstr "此操作無法撤銷。這將永久刪除此用戶並將其從所有任 msgid "This action cannot be undone. This will permanently delete your entire workspace. <0/> Please type in your email to confirm." msgstr "此操作無法撤銷。這將永久刪除您的整個工作區。 <0/> 請輸入您的電子郵件以確認。" +#: src/pages/settings/roles/components/RolePermissions.tsx:15 +msgid "This Role has the following permissions." +msgstr "" + +#: src/pages/settings/roles/components/RoleAssignment.tsx:15 +msgid "This Role is assigned to these workspace member." +msgstr "" + #: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx:49 msgid "Time format" msgstr "時間格式" -#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:49 +#: src/pages/settings/SettingsBilling.tsx:53 +msgid "to monthly" +msgstr "至每月" + +#: src/pages/settings/SettingsBilling.tsx:46 +msgid "to yearly" +msgstr "至每年" + +#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCanvasEditableEffect.tsx:56 msgid "Trigger Type" msgstr "觸發類型" @@ -1497,20 +1639,19 @@ msgstr "觸發類型應為手動 - 當未選擇記錄時" msgid "Type" msgstr "類型" -#: src/modules/command-menu/components/CommandMenuTopBar.tsx:117 +#: src/modules/command-menu/components/CommandMenuTopBar.tsx:154 msgid "Type anything" msgstr "輸入任何內容" -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 -msgid "URL" -msgstr "網址" - #: src/pages/settings/data-model/SettingsObjectIndexTable.tsx:49 #: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts:27 msgid "Unique" msgstr "唯一" +#: src/pages/onboarding/CreateWorkspace.tsx:80 +msgid "Unknown error" +msgstr "" + #: src/pages/onboarding/ChooseYourPlan.tsx:88 msgid "Unlimited contacts" msgstr "無限聯繫人" @@ -1519,6 +1660,11 @@ msgstr "無限聯繫人" msgid "Upload" msgstr "上傳" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:101 +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:242 +msgid "URL" +msgstr "網址" + #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:40 #: src/modules/action-menu/actions/record-actions/constants/WorkflowVersionsActionsConfig.ts:41 msgid "Use as draft" @@ -1576,6 +1722,10 @@ msgstr "Webhook" msgid "Webhooks" msgstr "Webhooks" +#: src/pages/auth/SignInUp.tsx:43 +#~ msgid "Welcome to" +#~ msgstr "Welcome to" + #: src/pages/auth/SignInUp.tsx:76 msgid "Welcome to {workspaceName}" msgstr "歡迎來到 {workspaceName}" @@ -1596,9 +1746,9 @@ msgstr "無法測試工作流程" #: src/pages/settings/SettingsWorkspace.tsx:32 #: src/pages/settings/SettingsBilling.tsx:135 #: src/pages/settings/Releases.tsx:114 -#: src/pages/settings/workspace/SettingsDomain.tsx:112 +#: src/pages/settings/workspace/SettingsDomain.tsx:118 #: src/pages/settings/security/SettingsSecurity.tsx:37 -#: src/pages/settings/roles/SettingsRoles.tsx:59 +#: src/pages/settings/roles/SettingsRoles.tsx:110 #: src/pages/settings/integrations/SettingsIntegrations.tsx:18 #: src/pages/settings/developers/SettingsDevelopers.tsx:39 #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhooksNew.tsx:75 @@ -1619,10 +1769,23 @@ msgstr "工作區" msgid "Workspace Deletion" msgstr "刪除工作區" +#: src/pages/onboarding/CreateWorkspace.tsx:123 +msgid "Workspace logo" +msgstr "" + +#: src/pages/onboarding/CreateWorkspace.tsx:128 +msgid "Workspace name" +msgstr "" + #: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:254 msgid "Write a description" msgstr "撰寫描述" +#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 +#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 +msgid "yes" +msgstr "是" + #: src/pages/settings/SettingsBilling.tsx:48 msgid "You will be charged immediately for the full year." msgstr "您將立即被收取全年的費用。" @@ -1635,52 +1798,14 @@ msgstr "您的信用餘額將用於支付每月賬單。" msgid "Your name as it will be displayed" msgstr "顯示您的姓名" +#: src/pages/onboarding/CreateProfile.tsx:167 +msgid "Your name as it will be displayed on the app" +msgstr "" + +#: src/pages/auth/SignInUp.tsx:73 +msgid "Your Workspace" +msgstr "" + #: src/pages/settings/SettingsBilling.tsx:172 msgid "Your workspace will be disabled" msgstr "您的工作區將被禁用" - -#: src/modules/auth/sign-in-up/components/FooterNote.tsx:31 -msgid "and" -msgstr "和" - -#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIconLabelForm.tsx:167 -msgid "employees" -msgstr "員工" - -#: src/pages/settings/SettingsBilling.tsx:47 -msgid "from monthly to yearly" -msgstr "從每月到每年" - -#: src/pages/settings/SettingsBilling.tsx:54 -msgid "from yearly to monthly" -msgstr "從每年到每月" - -#: src/pages/onboarding/InviteTeam.tsx:213 -msgid "or" -msgstr "或" - -#: src/pages/settings/SettingsBilling.tsx:53 -msgid "to monthly" -msgstr "至每月" - -#: src/pages/settings/SettingsBilling.tsx:46 -msgid "to yearly" -msgstr "至每年" - -#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx:209 -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:156 -msgid "yes" -msgstr "是" - -#: src/modules/object-record/record-board/record-board-column/utils/computeAggregateValueAndLabel.ts:131 -msgid "{aggregateLabel} of {fieldLabel}" -msgstr "{aggregateLabel} 的 {fieldLabel}" - -#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx:172 -msgid "{apiKeyName} API Key" -msgstr "{apiKeyName} API 密鑰" - -#: src/modules/action-menu/actions/record-agnostic-actions/run-workflow-actions/hooks/useRunWorkflowActions.tsx:41 -#: src/modules/action-menu/actions/record-actions/workflow-run-record-actions/hooks/useWorkflowRunRecordActions.tsx:65 -msgid "{name}" -msgstr "{name}" diff --git a/packages/twenty-front/src/modules/auth/graphql/mutations/signUp.ts b/packages/twenty-front/src/modules/auth/graphql/mutations/signUp.ts index d8c59e1ae..0e99fe68d 100644 --- a/packages/twenty-front/src/modules/auth/graphql/mutations/signUp.ts +++ b/packages/twenty-front/src/modules/auth/graphql/mutations/signUp.ts @@ -8,6 +8,7 @@ export const SIGN_UP = gql` $workspacePersonalInviteToken: String = null $captchaToken: String $workspaceId: String + $locale: String ) { signUp( email: $email @@ -16,6 +17,7 @@ export const SIGN_UP = gql` workspacePersonalInviteToken: $workspacePersonalInviteToken captchaToken: $captchaToken workspaceId: $workspaceId + locale: $locale ) { loginToken { ...AuthTokenFragment diff --git a/packages/twenty-front/src/modules/auth/hooks/__mocks__/useAuth.ts b/packages/twenty-front/src/modules/auth/hooks/__mocks__/useAuth.ts index 8701bb17a..fd5df13f8 100644 --- a/packages/twenty-front/src/modules/auth/hooks/__mocks__/useAuth.ts +++ b/packages/twenty-front/src/modules/auth/hooks/__mocks__/useAuth.ts @@ -23,7 +23,12 @@ export const variables = { password, }, getAuthTokensFromLoginToken: { loginToken: token }, - signup: {}, + signup: { + email, + password, + workspacePersonalInviteToken: null, + locale: "", + }, getCurrentUser: {}, }; @@ -103,7 +108,7 @@ export const mocks = [ { request: { query: queries.signup, - variables: variables.getLoginTokenFromCredentials, + variables: variables.signup, }, result: jest.fn(() => ({ data: { diff --git a/packages/twenty-front/src/modules/auth/hooks/useAuth.ts b/packages/twenty-front/src/modules/auth/hooks/useAuth.ts index 506c28adf..5ef07e884 100644 --- a/packages/twenty-front/src/modules/auth/hooks/useAuth.ts +++ b/packages/twenty-front/src/modules/auth/hooks/useAuth.ts @@ -60,9 +60,10 @@ import { useRedirectToWorkspaceDomain } from '@/domain-manager/hooks/useRedirect import { domainConfigurationState } from '@/domain-manager/states/domainConfigurationState'; import { isAppWaitingForFreshObjectMetadataState } from '@/object-metadata/states/isAppWaitingForFreshObjectMetadataState'; import { workspaceAuthProvidersState } from '@/workspace/states/workspaceAuthProvidersState'; +import { i18n } from '@lingui/core'; import { useSearchParams } from 'react-router-dom'; -import { dynamicActivate } from '~/utils/i18n/dynamicActivate'; import { getWorkspaceUrl } from '~/utils/getWorkspaceUrl'; +import { dynamicActivate } from '~/utils/i18n/dynamicActivate'; export const useAuth = () => { const setTokenPair = useSetRecoilState(tokenPairState); @@ -391,6 +392,7 @@ export const useAuth = () => { workspaceInviteHash, workspacePersonalInviteToken, captchaToken, + locale: i18n.locale ?? 'en', ...(workspacePublicData?.id ? { workspaceId: workspacePublicData.id } : {}), diff --git a/packages/twenty-front/src/pages/onboarding/CreateProfile.tsx b/packages/twenty-front/src/pages/onboarding/CreateProfile.tsx index fb1dd66b8..eaf472f43 100644 --- a/packages/twenty-front/src/pages/onboarding/CreateProfile.tsx +++ b/packages/twenty-front/src/pages/onboarding/CreateProfile.tsx @@ -21,6 +21,7 @@ import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar'; import { TextInputV2 } from '@/ui/input/components/TextInputV2'; import { useScopedHotkeys } from '@/ui/utilities/hotkey/hooks/useScopedHotkeys'; import { WorkspaceMember } from '@/workspace-member/types/WorkspaceMember'; +import { Trans, useLingui } from '@lingui/react/macro'; import { isDefined } from 'twenty-shared'; import { OnboardingStatus } from '~/generated/graphql'; @@ -55,6 +56,7 @@ const validationSchema = z type Form = z.infer; export const CreateProfile = () => { + const { t } = useLingui(); const onboardingStatus = useOnboardingStatus(); const setNextOnboardingStatus = useSetNextOnboardingStatus(); const { enqueueSnackBar } = useSnackBar(); @@ -148,8 +150,12 @@ export const CreateProfile = () => { return ( <> - Create profile - How you'll be identified on the app. + + <Trans>Create profile</Trans> + + + How you'll be identified on the app. + @@ -157,8 +163,8 @@ export const CreateProfile = () => { {/* TODO: When react-web-hook-form is added to edit page we should create a dedicated component with context */} @@ -171,7 +177,7 @@ export const CreateProfile = () => { }) => ( setIsEditingMode(true)} onBlur={() => { @@ -193,7 +199,7 @@ export const CreateProfile = () => { fieldState: { error }, }) => ( setIsEditingMode(true)} onBlur={() => { @@ -212,7 +218,7 @@ export const CreateProfile = () => { ; - export const CreateWorkspace = () => { + const { t } = useLingui(); const { enqueueSnackBar } = useSnackBar(); const onboardingStatus = useOnboardingStatus(); const setNextOnboardingStatus = useSetNextOnboardingStatus(); @@ -50,6 +44,14 @@ export const CreateWorkspace = () => { const { loadCurrentUser } = useAuth(); const [activateWorkspace] = useActivateWorkspaceMutation(); + const validationSchema = z + .object({ + name: z.string().min(1, { message: t`Name can not be empty` }), + }) + .required(); + + type Form = z.infer; + // Form const { control, @@ -75,7 +77,7 @@ export const CreateWorkspace = () => { }); if (isDefined(result.errors)) { - throw result.errors ?? new Error('Unknown error'); + throw result.errors ?? new Error(t`Unknown error`); } await loadCurrentUser(); setNextOnboardingStatus(); @@ -90,6 +92,7 @@ export const CreateWorkspace = () => { enqueueSnackBar, loadCurrentUser, setNextOnboardingStatus, + t, ], ); @@ -106,20 +109,24 @@ export const CreateWorkspace = () => { return ( <> - Create your workspace + + <Trans>Create your workspace</Trans> + - A shared environment where you will be able to manage your customer - relations with your team. + + A shared environment where you will be able to manage your customer + relations with your team. + - + { isSubmitting && } diff --git a/packages/twenty-front/src/pages/settings/profile/appearance/components/LocalePicker.tsx b/packages/twenty-front/src/pages/settings/profile/appearance/components/LocalePicker.tsx index 18553dafa..bd59e6b33 100644 --- a/packages/twenty-front/src/pages/settings/profile/appearance/components/LocalePicker.tsx +++ b/packages/twenty-front/src/pages/settings/profile/appearance/components/LocalePicker.tsx @@ -71,27 +71,27 @@ export const LocalePicker = () => { }, { label: t`French`, - value: APP_LOCALES.fr, + value: APP_LOCALES['fr-FR'], }, { label: t`Spanish`, - value: APP_LOCALES.es, + value: APP_LOCALES['es-ES'], }, { label: t`German`, - value: APP_LOCALES.de, + value: APP_LOCALES['de-DE'], }, { label: t`Italian`, - value: APP_LOCALES.it, + value: APP_LOCALES['it-IT'], }, { label: t`Korean`, - value: APP_LOCALES.ko, + value: APP_LOCALES['ko-KR'], }, { label: t`Japanese`, - value: APP_LOCALES.ja, + value: APP_LOCALES['ja-JP'], }, { label: t`Portuguese — Portugal`, @@ -103,17 +103,17 @@ export const LocalePicker = () => { }, { label: t`Chinese — Simplified`, - value: APP_LOCALES['zh-Hans'], + value: APP_LOCALES['zh-CN'], }, { label: t`Chinese — Traditional`, - value: APP_LOCALES['zh-Hant'], + value: APP_LOCALES['zh-TW'], }, ]; if (isDebugMode) { localeOptions.push({ label: t`Pseudo-English`, - value: 'pseudo-en', + value: APP_LOCALES['pseudo-en'], }); } diff --git a/packages/twenty-front/src/testing/decorators/PageDecorator.tsx b/packages/twenty-front/src/testing/decorators/PageDecorator.tsx index 35fb49458..7afa6ddab 100644 --- a/packages/twenty-front/src/testing/decorators/PageDecorator.tsx +++ b/packages/twenty-front/src/testing/decorators/PageDecorator.tsx @@ -67,7 +67,7 @@ const ApolloStorybookDevLogEffect = () => { return <>; }; -dynamicActivate('en'); +await dynamicActivate('en'); const Providers = () => { return ( diff --git a/packages/twenty-front/src/utils/i18n/dynamicActivate.ts b/packages/twenty-front/src/utils/i18n/dynamicActivate.ts index 9ecd2f20d..f0cf5b11f 100644 --- a/packages/twenty-front/src/utils/i18n/dynamicActivate.ts +++ b/packages/twenty-front/src/utils/i18n/dynamicActivate.ts @@ -2,6 +2,11 @@ import { i18n } from '@lingui/core'; import { APP_LOCALES } from 'twenty-shared'; export const dynamicActivate = async (locale: keyof typeof APP_LOCALES) => { + if (!Object.values(APP_LOCALES).includes(locale)) { + // eslint-disable-next-line no-console + console.warn(`Invalid locale "${locale}", defaulting to "en"`); + locale = 'en'; + } const { messages } = await import(`../../locales/generated/${locale}.ts`); i18n.load(locale, messages); i18n.activate(locale); diff --git a/packages/twenty-server/lingui.config.js b/packages/twenty-server/lingui.config.js index 4a36b7d30..5bbfd1bc1 100644 --- a/packages/twenty-server/lingui.config.js +++ b/packages/twenty-server/lingui.config.js @@ -20,12 +20,4 @@ export default defineConfig({ catalogsMergePath: '/src/engine/core-modules/i18n/locales/generated/{locale}', compileNamespace: 'ts', - ...(process.env.TRANSLATION_IO_API_KEY_BACKEND - ? { - service: { - name: 'TranslationIO', - apiKey: process.env.TRANSLATION_IO_API_KEY_BACKEND, - }, - } - : {}), }); diff --git a/packages/twenty-server/src/database/typeorm/core/migrations/common/1739022118023-addLocaleToUser.ts b/packages/twenty-server/src/database/typeorm/core/migrations/common/1739022118023-addLocaleToUser.ts new file mode 100644 index 000000000..70e55bbf0 --- /dev/null +++ b/packages/twenty-server/src/database/typeorm/core/migrations/common/1739022118023-addLocaleToUser.ts @@ -0,0 +1,15 @@ +import { MigrationInterface, QueryRunner } from 'typeorm'; + +export class AddLocaleToUser1739022118023 implements MigrationInterface { + name = 'AddLocaleToUser1739022118023'; + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query( + `ALTER TABLE "core"."user" ADD "locale" character varying NOT NULL DEFAULT 'en'`, + ); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query(`ALTER TABLE "core"."user" DROP COLUMN "locale"`); + } +} diff --git a/packages/twenty-server/src/engine/api/graphql/metadata.module-factory.ts b/packages/twenty-server/src/engine/api/graphql/metadata.module-factory.ts index f3d401fa1..eeed12f25 100644 --- a/packages/twenty-server/src/engine/api/graphql/metadata.module-factory.ts +++ b/packages/twenty-server/src/engine/api/graphql/metadata.module-factory.ts @@ -1,6 +1,8 @@ import { YogaDriverConfig } from '@graphql-yoga/nestjs'; import GraphQLJSON from 'graphql-type-json'; +import { NodeEnvironment } from 'src/engine/core-modules/environment/interfaces/node-environment.interface'; + import { useCachedMetadata } from 'src/engine/api/graphql/graphql-config/hooks/use-cached-metadata'; import { useThrottler } from 'src/engine/api/graphql/graphql-config/hooks/use-throttler'; import { MetadataGraphQLApiModule } from 'src/engine/api/graphql/metadata-graphql-api.module'; @@ -47,7 +49,7 @@ export const metadataModuleFactory = async ( }), }; - if (environmentService.get('NODE_ENV') === 'development') { + if (environmentService.get('NODE_ENV') === NodeEnvironment.development) { config.renderGraphiQL = () => { return renderApolloPlayground({ path: 'metadata' }); }; diff --git a/packages/twenty-server/src/engine/core-modules/auth/auth.resolver.ts b/packages/twenty-server/src/engine/core-modules/auth/auth.resolver.ts index fae9918da..ba5d878e4 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/auth.resolver.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/auth.resolver.ts @@ -197,6 +197,7 @@ export class AuthResolver { const { userData } = this.authService.formatUserDataPayload( { email: signUpInput.email, + locale: signUpInput.locale, }, existingUser, ); diff --git a/packages/twenty-server/src/engine/core-modules/auth/controllers/google-auth.controller.ts b/packages/twenty-server/src/engine/core-modules/auth/controllers/google-auth.controller.ts index cc641d6f1..ba115310b 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/controllers/google-auth.controller.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/controllers/google-auth.controller.ts @@ -18,8 +18,8 @@ import { GoogleProviderEnabledGuard } from 'src/engine/core-modules/auth/guards/ import { AuthService } from 'src/engine/core-modules/auth/services/auth.service'; import { GoogleRequest } from 'src/engine/core-modules/auth/strategies/google.auth.strategy'; import { LoginTokenService } from 'src/engine/core-modules/auth/token/services/login-token.service'; -import { User } from 'src/engine/core-modules/user/user.entity'; import { GuardRedirectService } from 'src/engine/core-modules/guard-redirect/services/guard-redirect.service'; +import { User } from 'src/engine/core-modules/user/user.entity'; @Controller('auth/google') @UseFilters(AuthRestApiExceptionFilter) @@ -51,6 +51,7 @@ export class GoogleAuthController { workspaceInviteHash, workspaceId, billingCheckoutSessionState, + locale, } = req.user; const currentWorkspace = await this.authService.findWorkspaceForSignInUp({ @@ -79,6 +80,7 @@ export class GoogleAuthController { lastName, email, picture, + locale, }, existingUser, ); diff --git a/packages/twenty-server/src/engine/core-modules/auth/controllers/microsoft-auth.controller.ts b/packages/twenty-server/src/engine/core-modules/auth/controllers/microsoft-auth.controller.ts index a2f19a252..670e2e993 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/controllers/microsoft-auth.controller.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/controllers/microsoft-auth.controller.ts @@ -17,8 +17,8 @@ import { MicrosoftProviderEnabledGuard } from 'src/engine/core-modules/auth/guar import { AuthService } from 'src/engine/core-modules/auth/services/auth.service'; import { MicrosoftRequest } from 'src/engine/core-modules/auth/strategies/microsoft.auth.strategy'; import { LoginTokenService } from 'src/engine/core-modules/auth/token/services/login-token.service'; -import { User } from 'src/engine/core-modules/user/user.entity'; import { GuardRedirectService } from 'src/engine/core-modules/guard-redirect/services/guard-redirect.service'; +import { User } from 'src/engine/core-modules/user/user.entity'; @Controller('auth/microsoft') @UseFilters(AuthRestApiExceptionFilter) @@ -52,6 +52,7 @@ export class MicrosoftAuthController { workspaceInviteHash, workspaceId, billingCheckoutSessionState, + locale, } = req.user; const currentWorkspace = await this.authService.findWorkspaceForSignInUp({ @@ -80,6 +81,7 @@ export class MicrosoftAuthController { lastName, email, picture, + locale, }, existingUser, ); diff --git a/packages/twenty-server/src/engine/core-modules/auth/dto/sign-up.input.ts b/packages/twenty-server/src/engine/core-modules/auth/dto/sign-up.input.ts index 0677274b0..999962ae8 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/dto/sign-up.input.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/dto/sign-up.input.ts @@ -1,6 +1,7 @@ import { ArgsType, Field } from '@nestjs/graphql'; import { IsEmail, IsNotEmpty, IsOptional, IsString } from 'class-validator'; +import { APP_LOCALES } from 'twenty-shared'; @ArgsType() export class SignUpInput { @@ -33,4 +34,9 @@ export class SignUpInput { @IsString() @IsOptional() captchaToken?: string; + + @Field(() => String, { nullable: true }) + @IsString() + @IsOptional() + locale?: keyof typeof APP_LOCALES; } diff --git a/packages/twenty-server/src/engine/core-modules/auth/strategies/google.auth.strategy.ts b/packages/twenty-server/src/engine/core-modules/auth/strategies/google.auth.strategy.ts index e12e7c452..063c09f92 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/strategies/google.auth.strategy.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/strategies/google.auth.strategy.ts @@ -3,6 +3,7 @@ import { PassportStrategy } from '@nestjs/passport'; import { Request } from 'express'; import { Strategy, VerifyCallback } from 'passport-google-oauth20'; +import { APP_LOCALES } from 'twenty-shared'; import { EnvironmentService } from 'src/engine/core-modules/environment/environment.service'; @@ -15,6 +16,7 @@ export type GoogleRequest = Omit< lastName?: string | null; email: string; picture: string | null; + locale?: keyof typeof APP_LOCALES | null; workspaceInviteHash?: string; workspacePersonalInviteToken?: string; workspaceId?: string; @@ -70,6 +72,7 @@ export class GoogleStrategy extends PassportStrategy(Strategy, 'google') { workspacePersonalInviteToken: state.workspacePersonalInviteToken, workspaceId: state.workspaceId, billingCheckoutSessionState: state.billingCheckoutSessionState, + locale: state.locale, }; done(null, user); diff --git a/packages/twenty-server/src/engine/core-modules/auth/strategies/microsoft.auth.strategy.ts b/packages/twenty-server/src/engine/core-modules/auth/strategies/microsoft.auth.strategy.ts index 02b13f9cf..ebdc8813c 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/strategies/microsoft.auth.strategy.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/strategies/microsoft.auth.strategy.ts @@ -3,6 +3,7 @@ import { PassportStrategy } from '@nestjs/passport'; import { Request } from 'express'; import { VerifyCallback } from 'passport-google-oauth20'; import { Strategy } from 'passport-microsoft'; +import { APP_LOCALES } from 'twenty-shared'; import { AuthException, @@ -19,6 +20,7 @@ export type MicrosoftRequest = Omit< lastName?: string | null; email: string; picture: string | null; + locale?: keyof typeof APP_LOCALES | null; workspaceInviteHash?: string; workspacePersonalInviteToken?: string; workspaceId?: string; @@ -44,6 +46,7 @@ export class MicrosoftStrategy extends PassportStrategy(Strategy, 'microsoft') { state: JSON.stringify({ workspaceInviteHash: req.query.workspaceInviteHash, workspaceId: req.params.workspaceId, + locale: req.query.locale, billingCheckoutSessionState: req.query.billingCheckoutSessionState, workspacePersonalInviteToken: req.query.workspacePersonalInviteToken, }), @@ -84,6 +87,7 @@ export class MicrosoftStrategy extends PassportStrategy(Strategy, 'microsoft') { workspacePersonalInviteToken: state.workspacePersonalInviteToken, workspaceId: state.workspaceId, billingCheckoutSessionState: state.billingCheckoutSessionState, + locale: state.locale, }; done(null, user); diff --git a/packages/twenty-server/src/engine/core-modules/auth/types/signInUp.type.ts b/packages/twenty-server/src/engine/core-modules/auth/types/signInUp.type.ts index 7dd623e2b..81151fee7 100644 --- a/packages/twenty-server/src/engine/core-modules/auth/types/signInUp.type.ts +++ b/packages/twenty-server/src/engine/core-modules/auth/types/signInUp.type.ts @@ -1,6 +1,8 @@ +import { APP_LOCALES } from 'twenty-shared'; + +import { AppToken } from 'src/engine/core-modules/app-token/app-token.entity'; import { User } from 'src/engine/core-modules/user/user.entity'; import { WorkspaceAuthProvider } from 'src/engine/core-modules/workspace/types/workspace.type'; -import { AppToken } from 'src/engine/core-modules/app-token/app-token.entity'; import { Workspace } from 'src/engine/core-modules/workspace/workspace.entity'; export type SignInUpBaseParams = { @@ -15,6 +17,7 @@ export type SignInUpNewUserPayload = { lastName?: string | null; picture?: string | null; passwordHash?: string | null; + locale?: keyof typeof APP_LOCALES | null; }; export type PartialUserWithPicture = { diff --git a/packages/twenty-server/src/engine/core-modules/i18n/i18n.middleware.ts b/packages/twenty-server/src/engine/core-modules/i18n/i18n.middleware.ts new file mode 100644 index 000000000..b27b2a509 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/i18n.middleware.ts @@ -0,0 +1,20 @@ +import { Injectable, NestMiddleware } from '@nestjs/common'; + +import { i18n } from '@lingui/core'; +import { NextFunction, Request, Response } from 'express'; +import { APP_LOCALES } from 'twenty-shared'; + +@Injectable() +export class I18nMiddleware implements NestMiddleware { + use(req: Request, res: Response, next: NextFunction) { + const locale = req.headers['x-locale'] as keyof typeof APP_LOCALES; + + if (locale && Object.values(APP_LOCALES).includes(locale)) { + i18n.activate(locale); + } else { + i18n.activate('en'); + } + + next(); + } +} diff --git a/packages/twenty-server/src/engine/core-modules/i18n/i18n.module.ts b/packages/twenty-server/src/engine/core-modules/i18n/i18n.module.ts index a837b4804..83ee3d9f6 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/i18n.module.ts +++ b/packages/twenty-server/src/engine/core-modules/i18n/i18n.module.ts @@ -1,5 +1,6 @@ -import { Global, Module } from '@nestjs/common'; +import { Global, MiddlewareConsumer, Module, NestModule } from '@nestjs/common'; +import { I18nMiddleware } from 'src/engine/core-modules/i18n/i18n.middleware'; import { I18nService } from 'src/engine/core-modules/i18n/i18n.service'; @Global() @@ -7,4 +8,8 @@ import { I18nService } from 'src/engine/core-modules/i18n/i18n.service'; providers: [I18nService], exports: [I18nService], }) -export class I18nModule {} +export class I18nModule implements NestModule { + configure(consumer: MiddlewareConsumer) { + consumer.apply(I18nMiddleware).forRoutes('*'); + } +} diff --git a/packages/twenty-server/src/engine/core-modules/i18n/i18n.service.ts b/packages/twenty-server/src/engine/core-modules/i18n/i18n.service.ts index e15c7cb79..8cff38149 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/i18n.service.ts +++ b/packages/twenty-server/src/engine/core-modules/i18n/i18n.service.ts @@ -1,35 +1,44 @@ import { Injectable, OnModuleInit } from '@nestjs/common'; import { i18n } from '@lingui/core'; +import { APP_LOCALES } from 'twenty-shared'; -import { messages as deMessages } from 'src/engine/core-modules/i18n/locales/generated/de'; +import { messages as deMessages } from 'src/engine/core-modules/i18n/locales/generated/de-DE'; import { messages as enMessages } from 'src/engine/core-modules/i18n/locales/generated/en'; -import { messages as esMessages } from 'src/engine/core-modules/i18n/locales/generated/es'; -import { messages as frMessages } from 'src/engine/core-modules/i18n/locales/generated/fr'; -import { messages as itMessages } from 'src/engine/core-modules/i18n/locales/generated/it'; -import { messages as jaMessages } from 'src/engine/core-modules/i18n/locales/generated/ja'; -import { messages as koMessages } from 'src/engine/core-modules/i18n/locales/generated/ko'; +import { messages as esMessages } from 'src/engine/core-modules/i18n/locales/generated/es-ES'; +import { messages as frMessages } from 'src/engine/core-modules/i18n/locales/generated/fr-FR'; +import { messages as itMessages } from 'src/engine/core-modules/i18n/locales/generated/it-IT'; +import { messages as jaMessages } from 'src/engine/core-modules/i18n/locales/generated/ja-JP'; +import { messages as koMessages } from 'src/engine/core-modules/i18n/locales/generated/ko-KR'; import { messages as pseudoEnMessages } from 'src/engine/core-modules/i18n/locales/generated/pseudo-en'; import { messages as ptBRMessages } from 'src/engine/core-modules/i18n/locales/generated/pt-BR'; import { messages as ptPTMessages } from 'src/engine/core-modules/i18n/locales/generated/pt-PT'; -import { messages as zhHansMessages } from 'src/engine/core-modules/i18n/locales/generated/zh-Hans'; -import { messages as zhHantMessages } from 'src/engine/core-modules/i18n/locales/generated/zh-Hant'; +import { messages as zhHansMessages } from 'src/engine/core-modules/i18n/locales/generated/zh-CN'; +import { messages as zhHantMessages } from 'src/engine/core-modules/i18n/locales/generated/zh-TW'; @Injectable() export class I18nService implements OnModuleInit { async loadTranslations() { - i18n.load('en', enMessages); - i18n.load('fr', frMessages); - i18n.load('pseudo-en', pseudoEnMessages); - i18n.load('ko', koMessages); - i18n.load('de', deMessages); - i18n.load('it', itMessages); - i18n.load('es', esMessages); - i18n.load('ja', jaMessages); - i18n.load('pt-PT', ptPTMessages); - i18n.load('pt-BR', ptBRMessages); - i18n.load('zh-Hans', zhHansMessages); - i18n.load('zh-Hant', zhHantMessages); + const messages: Record = { + en: enMessages, + 'pseudo-en': pseudoEnMessages, + 'fr-FR': frMessages, + 'ko-KR': koMessages, + 'de-DE': deMessages, + 'it-IT': itMessages, + 'es-ES': esMessages, + 'ja-JP': jaMessages, + 'pt-PT': ptPTMessages, + 'pt-BR': ptBRMessages, + 'zh-CN': zhHansMessages, + 'zh-TW': zhHantMessages, + }; + + (Object.entries(messages) as [keyof typeof APP_LOCALES, any][]).forEach( + ([locale, message]) => { + i18n.load(locale, message); + }, + ); i18n.activate('en'); } diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/af-ZA.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/af-ZA.po new file mode 100644 index 000000000..7986033fd --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/af-ZA.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: af\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Afrikaans\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: af\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/ar-SA.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/ar-SA.po new file mode 100644 index 000000000..997fba494 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/ar-SA.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ar\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Arabic\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ar\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/ca-ES.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/ca-ES.po new file mode 100644 index 000000000..56f055e79 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/ca-ES.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ca\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Catalan\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ca\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/cs-CZ.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/cs-CZ.po new file mode 100644 index 000000000..ace3e777a --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/cs-CZ.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: cs\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Czech\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: cs\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/da-DK.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/da-DK.po new file mode 100644 index 000000000..c342781ef --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/da-DK.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: da\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Danish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: da\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/de.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/de-DE.po similarity index 99% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/de.po rename to packages/twenty-server/src/engine/core-modules/i18n/locales/de-DE.po index 7306c4b85..761506566 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/de.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/de-DE.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: de\n" -"Project-Id-Version: \n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: German\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: de\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "X" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "Ihr Teammitglied, das für die Verwaltung des Unternehmenskontos verantwortlich ist" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/el-GR.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/el-GR.po new file mode 100644 index 000000000..2a3d40f73 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/el-GR.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: el\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Greek\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: el\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/es.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/es-ES.po similarity index 99% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/es.po rename to packages/twenty-server/src/engine/core-modules/i18n/locales/es-ES.po index fa4dcd39f..04298339e 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/es.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/es-ES.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: es\n" -"Project-Id-Version: \n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: Spanish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: es\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "X" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "Miembro de su equipo responsable de gestionar la cuenta de la empresa" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/fi-FI.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/fi-FI.po new file mode 100644 index 000000000..ebf2bf675 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/fi-FI.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Finnish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: fi\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/fr.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/fr-FR.po similarity index 99% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/fr.po rename to packages/twenty-server/src/engine/core-modules/i18n/locales/fr-FR.po index e519b4308..8d929ce5c 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/fr.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/fr-FR.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: fr\n" -"Project-Id-Version: \n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: French\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: fr\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "X" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "Le membre de votre équipe responsable de la gestion du compte entreprise" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/de.ts b/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/de-DE.ts similarity index 100% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/generated/de.ts rename to packages/twenty-server/src/engine/core-modules/i18n/locales/generated/de-DE.ts diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/es.ts b/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/es-ES.ts similarity index 100% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/generated/es.ts rename to packages/twenty-server/src/engine/core-modules/i18n/locales/generated/es-ES.ts diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/fr.ts b/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/fr-FR.ts similarity index 100% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/generated/fr.ts rename to packages/twenty-server/src/engine/core-modules/i18n/locales/generated/fr-FR.ts diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/it.ts b/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/it-IT.ts similarity index 100% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/generated/it.ts rename to packages/twenty-server/src/engine/core-modules/i18n/locales/generated/it-IT.ts diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/ja.ts b/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/ja-JP.ts similarity index 100% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/generated/ja.ts rename to packages/twenty-server/src/engine/core-modules/i18n/locales/generated/ja-JP.ts diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/ko.ts b/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/ko-KR.ts similarity index 100% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/generated/ko.ts rename to packages/twenty-server/src/engine/core-modules/i18n/locales/generated/ko-KR.ts diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/zh-Hans.ts b/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/zh-CN.ts similarity index 100% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/generated/zh-Hans.ts rename to packages/twenty-server/src/engine/core-modules/i18n/locales/generated/zh-CN.ts diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/zh-Hant.ts b/packages/twenty-server/src/engine/core-modules/i18n/locales/generated/zh-TW.ts similarity index 100% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/generated/zh-Hant.ts rename to packages/twenty-server/src/engine/core-modules/i18n/locales/generated/zh-TW.ts diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/he-IL.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/he-IL.po new file mode 100644 index 000000000..b84f451c1 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/he-IL.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: he\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Hebrew\n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: he\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/hu-HU.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/hu-HU.po new file mode 100644 index 000000000..9430e709b --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/hu-HU.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: hu\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Hungarian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: hu\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/it.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/it-IT.po similarity index 99% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/it.po rename to packages/twenty-server/src/engine/core-modules/i18n/locales/it-IT.po index 1dcff65dd..2a2cdba8a 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/it.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/it-IT.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: it\n" -"Project-Id-Version: \n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: Italian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: it\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "X" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "Il membro del team responsabile della gestione dell'account aziendale" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/ja.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/ja-JP.po similarity index 99% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/ja.po rename to packages/twenty-server/src/engine/core-modules/i18n/locales/ja-JP.po index 984d328b1..ec6a7b208 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/ja.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/ja-JP.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: ja\n" -"Project-Id-Version: \n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: Japanese\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ja\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/ko.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/ko-KR.po similarity index 99% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/ko.po rename to packages/twenty-server/src/engine/core-modules/i18n/locales/ko-KR.po index e9a92a1e1..105522e3f 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/ko.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/ko-KR.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" "Language: ko\n" -"Project-Id-Version: \n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: Korean\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ko\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "X" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "회사 계정을 관리하는 팀원" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/nl-NL.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/nl-NL.po new file mode 100644 index 000000000..d93960d16 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/nl-NL.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nl\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Dutch\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: nl\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/no-NO.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/no-NO.po new file mode 100644 index 000000000..b931f8f86 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/no-NO.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: no\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Norwegian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: no\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/pl-PL.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/pl-PL.po new file mode 100644 index 000000000..e8f7bc6e5 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/pl-PL.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: pl\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Polish\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: pl\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/pt-br.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/pt-br.po index c012b8d79..633a3b0f1 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/pt-br.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/pt-br.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: pt-BR\n" -"Project-Id-Version: \n" +"Language: pt\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: Portuguese, Brazilian\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: pt-BR\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "X" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "Seu membro da equipe responsável por gerenciar a conta da empresa" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/pt-pt.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/pt-pt.po index f126f4af3..3f15e3d3c 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/pt-pt.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/pt-pt.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: pt-PT\n" -"Project-Id-Version: \n" +"Language: pt\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: Portuguese\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: pt\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "X" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "O membro da sua equipa responsável pela gestão da conta da empresa" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/ro-RO.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/ro-RO.po new file mode 100644 index 000000000..de4b6df16 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/ro-RO.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ro\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Romanian\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ro\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/ru-RU.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/ru-RU.po new file mode 100644 index 000000000..51729f93e --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/ru-RU.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: ru\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Russian\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: ru\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/sr-Cyrl.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/sr-Cyrl.po new file mode 100644 index 000000000..bcd304d7c --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/sr-Cyrl.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: sr_Cyrl\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Serbian (Cyrillic)\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: sr-Cyrl\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po new file mode 100644 index 000000000..b40a0c1b4 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/sv-SE.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: sv\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Swedish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: sv\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/tr-TR.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/tr-TR.po new file mode 100644 index 000000000..409416d41 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/tr-TR.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: tr\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Turkish\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: tr\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/uk-UA.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/uk-UA.po new file mode 100644 index 000000000..caab5ba27 --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/uk-UA.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: uk\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Ukrainian\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: uk\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/vi-VN.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/vi-VN.po new file mode 100644 index 000000000..cf86bf90c --- /dev/null +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/vi-VN.po @@ -0,0 +1,2248 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: vi\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2025-02-09 12:24\n" +"Last-Translator: \n" +"Language-Team: Vietnamese\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: vi\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 +msgid "(System) View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:29 +msgid "(System) View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:25 +msgid "(System) View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:23 +msgid "(System) View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:26 +msgid "(System) View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:33 +msgid "(System) Views" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:55 +msgid "A company" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:30 +msgid "A connected account" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:37 +msgid "A favorite that can be accessed from the left menu" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:24 +msgid "A Folder of favorites" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:25 +msgid "A group of related messages (e.g. email thread, chat thread)" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:30 +msgid "A message sent or received through a messaging channel (email, chat, etc.)" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:46 +msgid "A note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:27 +msgid "A note target" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:59 +msgid "A person" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:48 +msgid "A task" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:27 +msgid "A task target" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:20 +msgid "A webhook" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:59 +msgid "A workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:24 +msgid "A workflow event listener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:54 +msgid "A workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:67 +msgid "A workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:78 +msgid "A workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:58 +msgid "Access Token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:114 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:115 +#: src/modules/company/standard-objects/company.workspace-entity.ts:176 +msgid "Account Owner" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:169 +msgid "Account owner for companies" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:168 +msgid "Account Owner For Companies" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:123 +msgid "Address" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:264 +msgid "Address (deprecated) " +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:124 +msgid "Address of the company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:265 +msgid "Address of the company - deprecated in favor of new address field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:189 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:96 +msgid "Aggregate operation" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:35 +msgid "Aggregated / filtered event to be displayed on the timeline" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:69 +msgid "Amount" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:19 +msgid "An API key" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:32 +msgid "An attachment" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:24 +msgid "An audit log of actions performed in the system" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:20 +msgid "An event related to user behavior" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:50 +msgid "An opportunity" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:114 +msgid "Annual Recurring Revenue: The actual or estimated annual revenue of the company" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:17 +msgid "API Key" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:18 +msgid "API Keys" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:39 +msgid "ApiKey expiration date" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:30 +msgid "ApiKey name" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:48 +msgid "ApiKey revocation date" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:113 +msgid "ARR" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:145 +msgid "Assigned tasks" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:168 +msgid "Assignee" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:136 +msgid "Associated User Id" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:30 +msgid "Attachment" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:70 +msgid "Attachment author" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:129 +msgid "Attachment company" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:52 +msgid "Attachment full path" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:43 +msgid "Attachment name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:99 +msgid "Attachment note" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:144 +msgid "Attachment opportunity" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:114 +msgid "Attachment person" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:84 +msgid "Attachment task" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:61 +msgid "Attachment type" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:156 +#: src/modules/person/standard-objects/person.workspace-entity.ts:238 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:199 +#: src/modules/note/standard-objects/note.workspace-entity.ts:118 +#: src/modules/company/standard-objects/company.workspace-entity.ts:239 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:31 +#: src/engine/twenty-orm/custom.workspace-entity.ts:118 +msgid "Attachments" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:181 +msgid "Attachments created by the workspace member" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:240 +msgid "Attachments linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:239 +msgid "Attachments linked to the contact." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:200 +msgid "Attachments linked to the opportunity" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:123 +msgid "Attachments tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:22 +msgid "Audit Log" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:255 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:23 +msgid "Audit Logs" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:256 +msgid "Audit Logs linked to the workspace member" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:85 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:86 +msgid "Auth failed at" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:69 +msgid "Author" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:180 +msgid "Authored attachments" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:171 +msgid "Automatically create People records when receiving or sending emails" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:222 +msgid "Automatically create records for people you participated with in an event." +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:146 +msgid "Avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:117 +msgid "Avatar Url" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:18 +msgid "Behavioral Event" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:19 +msgid "Behavioral Events" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:216 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:22 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:24 +msgid "Blocklist" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:217 +msgid "Blocklisted handles" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:23 +msgid "Blocklists" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:77 +#: src/modules/task/standard-objects/task.workspace-entity.ts:87 +#: src/modules/note/standard-objects/note.workspace-entity.ts:75 +#: src/modules/note/standard-objects/note.workspace-entity.ts:85 +msgid "Body" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:75 +msgid "Cached record name" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:74 +msgid "Calendar Channel" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:23 +msgid "Calendar Channel Event Association" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:155 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:156 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:322 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:323 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:24 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:25 +msgid "Calendar Channel Event Associations" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:139 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:140 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:75 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:76 +msgid "Calendar Channels" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:27 +msgid "Calendar event" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:32 +msgid "Calendar event participant" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:33 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:34 +msgid "Calendar event participants" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:228 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:229 +#: src/modules/person/standard-objects/person.workspace-entity.ts:262 +#: src/modules/person/standard-objects/person.workspace-entity.ts:263 +msgid "Calendar Event Participants" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:29 +msgid "Calendar events" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:55 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:56 +msgid "Channel ID" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:136 +msgid "Channel Type" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:137 +msgid "City" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:79 +msgid "Close date" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:97 +msgid "Color Scheme" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:108 +msgid "Compact View" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:54 +msgid "Companies" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:134 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:65 +#: src/modules/person/standard-objects/person.workspace-entity.ts:177 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:148 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:65 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:88 +#: src/modules/company/standard-objects/company.workspace-entity.ts:53 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:128 +msgid "Company" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:144 +msgid "Company record position" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:135 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:136 +msgid "Conference Solution" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:359 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:360 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:28 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:307 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:308 +msgid "Connected Account" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:192 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:193 +msgid "Connected accounts" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:29 +msgid "Connected Accounts" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:170 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:221 +msgid "Contact auto creation policy" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:147 +msgid "Contact’s avatar" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:138 +msgid "Contact’s city" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:178 +msgid "Contact’s company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:80 +msgid "Contact’s Emails" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:110 +msgid "Contact’s job title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:90 +msgid "Contact’s Linkedin account" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:70 +msgid "Contact’s name" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:119 +msgid "Contact’s phone number" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:129 +msgid "Contact’s phone numbers" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:100 +msgid "Contact’s X/Twitter account" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:166 +#: src/modules/task/standard-objects/task.workspace-entity.ts:136 +#: src/modules/person/standard-objects/person.workspace-entity.ts:167 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:123 +#: src/modules/note/standard-objects/note.workspace-entity.ts:98 +#: src/modules/company/standard-objects/company.workspace-entity.ts:154 +#: src/engine/twenty-orm/custom.workspace-entity.ts:61 +msgid "Created by" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:44 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:45 +#: src/engine/twenty-orm/base.workspace-entity.ts:26 +#: src/engine/twenty-orm/base.workspace-entity.ts:27 +msgid "Creation date" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:88 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:89 +msgid "Creation DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:278 +msgid "Date format" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:53 +msgid "Date when the record was deleted" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:52 +msgid "Deleted at" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:109 +msgid "Describes if the view is in compact mode" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:59 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:108 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:109 +msgid "Description" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:48 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:66 +msgid "Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:62 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:54 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:55 +msgid "Display Name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:59 +msgid "Display Value" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:73 +msgid "Domain Name" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:100 +msgid "Due Date" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:79 +msgid "Emails" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:83 +msgid "Employees" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:78 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:79 +msgid "End Date" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:135 +msgid "Event company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:67 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:52 +msgid "Event context" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:63 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:57 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:42 +msgid "Event details" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:35 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:36 +msgid "Event external ID" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:109 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:110 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:70 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:71 +msgid "Event ID" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:132 +msgid "Event Listeners" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:54 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:55 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:48 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:49 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:33 +msgid "Event name" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:87 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:34 +msgid "Event name/type" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:165 +msgid "Event note" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:150 +msgid "Event opportunity" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:168 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:169 +msgid "Event Participants" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:120 +msgid "Event person" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:180 +msgid "Event task" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:195 +msgid "Event workflow" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:225 +msgid "Event workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:210 +msgid "Event workflow version" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:105 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:91 +msgid "Event workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:242 +#: src/modules/person/standard-objects/person.workspace-entity.ts:276 +msgid "Events" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:277 +msgid "Events linked to the person" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:243 +msgid "Events linked to the workspace member" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:210 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:211 +msgid "Exclude group emails" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:200 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:201 +msgid "Exclude non professional emails" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:127 +msgid "Executed by" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:38 +msgid "Expiration date" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:35 +msgid "Favorite" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:89 +msgid "Favorite company" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:22 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:103 +msgid "Favorite Folder" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:33 +msgid "Favorite folder position" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:23 +msgid "Favorite Folders" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:194 +msgid "Favorite note" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:119 +msgid "Favorite opportunity" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:74 +msgid "Favorite person" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:47 +msgid "Favorite position" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:179 +msgid "Favorite task" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:209 +msgid "Favorite view" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:134 +msgid "Favorite workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:164 +msgid "Favorite workflow run" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:149 +msgid "Favorite workflow version" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:59 +msgid "Favorite workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:157 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:143 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:154 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:186 +#: src/modules/view/standard-objects/view.workspace-entity.ts:177 +#: src/modules/task/standard-objects/task.workspace-entity.ts:197 +#: src/modules/person/standard-objects/person.workspace-entity.ts:226 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:143 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:52 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:36 +#: src/modules/company/standard-objects/company.workspace-entity.ts:226 +#: src/engine/twenty-orm/custom.workspace-entity.ts:101 +msgid "Favorites" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:53 +msgid "Favorites in this folder" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:227 +msgid "Favorites linked to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:227 +msgid "Favorites linked to the contact" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:144 +msgid "Favorites linked to the note" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:165 +msgid "Favorites linked to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:198 +msgid "Favorites linked to the task" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:178 +msgid "Favorites linked to the view" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:144 +msgid "Favorites linked to the workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:187 +msgid "Favorites linked to the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:155 +msgid "Favorites linked to the workflow version" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:158 +msgid "Favorites linked to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:106 +msgid "Favorites tied to the {label}" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:32 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:45 +msgid "Field Metadata Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:262 +#: src/modules/view/standard-objects/view.workspace-entity.ts:263 +msgid "Field metadata used for aggregate operation" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:6 +msgid "Field used for full-text search" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:51 +msgid "Field Value" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:23 +msgid "Folder for Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:33 +msgid "Folder name" +msgstr "" + +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:51 +msgid "Full path" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:52 +msgid "Group by this field value" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:40 +msgid "handle" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:53 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:54 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:126 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:127 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:46 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:86 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:87 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:34 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:35 +msgid "Handle" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:95 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:96 +msgid "Handle Aliases" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:40 +msgid "Header message Id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:126 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:127 +msgid "iCal UID" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:79 +msgid "Icon" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:133 +msgid "ICP" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:14 +#: src/engine/twenty-orm/base.workspace-entity.ts:15 +msgid "Id" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:134 +msgid "Ideal Customer Profile: Indicates whether the company is the most suitable and valuable customer for you" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:78 +msgid "If the event is related to a particular object" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:48 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:49 +msgid "Is canceled" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:160 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:161 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:211 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:212 +msgid "Is Contact Auto Creation Enabled" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:59 +msgid "Is Full Day" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:63 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:64 +msgid "Is Organizer" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:220 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:221 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:258 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:259 +msgid "Is Sync Enabled" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:109 +msgid "Job Title" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:68 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:53 +msgid "Json object to provide context (user, device, workspace, etc.)" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:137 +msgid "Json object to provide output of the workflow run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:95 +msgid "Json object to provide steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:85 +msgid "Json object to provide trigger" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:64 +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:58 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:43 +msgid "Json value for event details" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:87 +msgid "kanbanfieldMetadataId" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:68 +msgid "Key" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:107 +msgid "Language" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:77 +msgid "Last published Version Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:230 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:231 +msgid "Last sync cursor" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:239 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:240 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:277 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:278 +msgid "Last sync date" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:76 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:77 +msgid "Last sync history ID" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:40 +msgid "Last time the record was changed" +msgstr "" + +#: src/engine/twenty-orm/base.workspace-entity.ts:39 +msgid "Last update" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:93 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:94 +msgid "Linked Object Metadata Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:192 +msgid "Linked Opportunities" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:74 +msgid "Linked Record cached name" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:83 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:84 +msgid "Linked Record id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:89 +#: src/modules/company/standard-objects/company.workspace-entity.ts:93 +msgid "Linkedin" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:193 +msgid "List of opportunities for which that person is the point of contact" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:117 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:118 +msgid "Location" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:60 +msgid "Logical Operator" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:61 +msgid "Logical operator for the filter group" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:144 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:145 +msgid "Meet Link" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:28 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:71 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:72 +msgid "Message" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:41 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:42 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:84 +msgid "Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:105 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:374 +msgid "Message Channel Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:91 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:92 +msgid "Message Channel Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:29 +msgid "Message Channel Message Association" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:30 +msgid "Message Channel Message Associations" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:86 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:128 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:129 +msgid "Message Channels" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:67 +msgid "Message Direction" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:45 +msgid "Message External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:21 +msgid "Message Folder" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:22 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:388 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:389 +msgid "Message Folders" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:107 +msgid "Message Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:41 +msgid "Message id from the message header" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:46 +msgid "Message id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:25 +msgid "Message Participant" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:204 +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:205 +#: src/modules/person/standard-objects/person.workspace-entity.ts:249 +#: src/modules/person/standard-objects/person.workspace-entity.ts:250 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:93 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:94 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:26 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:27 +msgid "Message Participants" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:31 +msgid "Message Synced with a Message Channel" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:23 +msgid "Message Thread" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:77 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:78 +msgid "Message Thread Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:24 +msgid "Message Threads" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:29 +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:34 +msgid "Messages" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:106 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:375 +msgid "Messages from the channel." +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-thread.workspace-entity.ts:35 +msgid "Messages from the thread." +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:59 +msgid "Messaging provider access token" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:68 +msgid "Messaging provider refresh token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:88 +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:68 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:75 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:62 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:34 +#: src/modules/view/standard-objects/view.workspace-entity.ts:43 +#: src/modules/person/standard-objects/person.workspace-entity.ts:69 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:60 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:32 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:43 +#: src/modules/company/standard-objects/company.workspace-entity.ts:64 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:42 +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:29 +#: src/engine/twenty-orm/custom.workspace-entity.ts:40 +#: src/engine/twenty-orm/custom.workspace-entity.ts:41 +msgid "Name" +msgstr "" + +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:44 +msgid "Name of the favorite folder" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:63 +msgid "Name of the workflow run" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:164 +#: src/modules/note/standard-objects/note.workspace-entity.ts:44 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:193 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:98 +msgid "Note" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:119 +msgid "Note attachments" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:76 +#: src/modules/note/standard-objects/note.workspace-entity.ts:86 +msgid "Note body" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:56 +msgid "Note record position" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:25 +msgid "Note Target" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:107 +msgid "Note targets" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:26 +msgid "Note Targets" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:67 +msgid "Note title" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:215 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:188 +#: src/modules/note/standard-objects/note.workspace-entity.ts:45 +#: src/modules/company/standard-objects/company.workspace-entity.ts:203 +#: src/engine/twenty-orm/custom.workspace-entity.ts:69 +msgid "Notes" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:74 +msgid "Notes tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:204 +msgid "Notes tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:216 +msgid "Notes tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:189 +msgid "Notes tied to the opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:66 +msgid "NoteTarget company" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:36 +msgid "NoteTarget note" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:81 +msgid "NoteTarget opportunity" +msgstr "" + +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:51 +msgid "NoteTarget person" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:84 +msgid "Number of employees in the company" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:86 +msgid "Object id" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:71 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:72 +msgid "Object metadata id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:51 +msgid "Object Metadata Id" +msgstr "" + +#: src/modules/timeline/standard-objects/behavioral-event.workspace-entity.ts:77 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:62 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:63 +msgid "Object name" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:42 +msgid "Operand" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:39 +msgid "Operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:49 +msgid "Operations" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:49 +#: src/modules/company/standard-objects/company.workspace-entity.ts:214 +msgid "Opportunities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:215 +msgid "Opportunities linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:149 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:80 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:48 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:80 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:118 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:143 +msgid "Opportunity" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:70 +msgid "Opportunity amount" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:80 +msgid "Opportunity close date" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:149 +msgid "Opportunity company" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:133 +msgid "Opportunity point of contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:224 +msgid "Opportunity probability" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:113 +msgid "Opportunity record position" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:90 +msgid "Opportunity stage" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:190 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:97 +msgid "Optional aggregate operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:70 +msgid "Optional secret used to compute the HMAC signature for webhook payloads. This secret is shared between Twenty and the webhook consumer to authenticate webhook requests." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:136 +msgid "Output" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:52 +msgid "Parent View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:51 +msgid "Parent View Filter Group Id" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:58 +#: src/modules/company/standard-objects/company.workspace-entity.ts:164 +msgid "People" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:165 +msgid "People linked to the company." +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:119 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:50 +#: src/modules/person/standard-objects/person.workspace-entity.ts:57 +#: src/modules/note/standard-objects/note-target.workspace-entity.ts:50 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:85 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:86 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:123 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:124 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:113 +msgid "Person" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:157 +msgid "Person record Position" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:118 +msgid "Phone" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:128 +msgid "Phones" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:132 +msgid "Point of Contact" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:98 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:115 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:146 +#: src/modules/view/standard-objects/view.workspace-entity.ts:98 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:59 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:74 +#: src/modules/task/standard-objects/task.workspace-entity.ts:57 +#: src/modules/person/standard-objects/person.workspace-entity.ts:156 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:112 +#: src/modules/note/standard-objects/note.workspace-entity.ts:55 +#: src/modules/favorite-folder/standard-objects/favorite-folder.workspace-entity.ts:32 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:46 +#: src/modules/company/standard-objects/company.workspace-entity.ts:143 +#: src/engine/twenty-orm/custom.workspace-entity.ts:49 +#: src/engine/twenty-orm/custom.workspace-entity.ts:50 +msgid "Position" +msgstr "" + +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:90 +msgid "Position in the parent view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:92 +msgid "Position in the view filter group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:91 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:89 +msgid "Position in view filter group" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:98 +msgid "Preferred color scheme" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:108 +msgid "Preferred language" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:223 +msgid "Probability" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:49 +msgid "provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:67 +msgid "Received At" +msgstr "" + +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:80 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:81 +msgid "Record id" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:45 +#: src/modules/calendar/common/standard-objects/calendar-channel-event-association.workspace-entity.ts:46 +msgid "Recurring Event ID" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:67 +msgid "Refresh Token" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:127 +msgid "Related user email address" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:144 +#: src/modules/note/standard-objects/note.workspace-entity.ts:106 +msgid "Relations" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:73 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:74 +msgid "Response Status" +msgstr "" + +#: src/modules/api-key/standard-objects/api-key.workspace-entity.ts:47 +msgid "Revocation date" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:37 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:38 +msgid "Role" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:121 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:142 +msgid "Runs" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:104 +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:105 +msgid "Scopes" +msgstr "" + +#: src/engine/metadata-modules/constants/search-vector-field.constants.ts:5 +msgid "Search vector" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:69 +msgid "Secret" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:64 +msgid "Size" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:89 +msgid "Stage" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:68 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:69 +msgid "Start Date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:110 +msgid "Status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:87 +msgid "Statuses" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:49 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:50 +msgid "Subject" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:51 +#: src/modules/messaging/common/standard-objects/message-folder.workspace-entity.ts:52 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:268 +msgid "Sync Cursor" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:269 +msgid "Sync Cursor. Used for syncing events from the calendar provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:291 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:292 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:137 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:138 +msgid "Sync stage" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:339 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:340 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:287 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:288 +msgid "Sync stage started at" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:249 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:250 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:95 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:96 +msgid "Sync status" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:30 +msgid "Target Url" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:179 +#: src/modules/task/standard-objects/task.workspace-entity.ts:46 +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:35 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:178 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:83 +msgid "Task" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:169 +msgid "Task assignee" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:157 +msgid "Task attachments" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:78 +#: src/modules/task/standard-objects/task.workspace-entity.ts:88 +msgid "Task body" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:101 +msgid "Task due date" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:58 +msgid "Task record position" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:111 +msgid "Task status" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:25 +msgid "Task Target" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:145 +msgid "Task targets" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:26 +msgid "Task Targets" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:69 +msgid "Task title" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:47 +#: src/modules/person/standard-objects/person.workspace-entity.ts:204 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:177 +#: src/modules/company/standard-objects/company.workspace-entity.ts:192 +#: src/engine/twenty-orm/custom.workspace-entity.ts:85 +msgid "Tasks" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:146 +msgid "Tasks assigned to the workspace member" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:90 +msgid "Tasks tied to the {label}" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:193 +msgid "Tasks tied to the company" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:205 +msgid "Tasks tied to the contact" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:178 +msgid "Tasks tied to the opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:66 +msgid "TaskTarget company" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:81 +msgid "TaskTarget opportunity" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:51 +msgid "TaskTarget person" +msgstr "" + +#: src/modules/task/standard-objects/task-target.workspace-entity.ts:36 +msgid "TaskTarget task" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:58 +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:59 +msgid "Text" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:41 +msgid "The account handle (email, username, phone number, etc.)" +msgstr "" + +#: src/modules/connected-account/standard-objects/connected-account.workspace-entity.ts:50 +msgid "The account provider" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:94 +msgid "The company Linkedin account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:65 +msgid "The company name" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:104 +msgid "The company Twitter/X account" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:74 +msgid "The company website URL. We use this url to fetch the company icon" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:168 +#: src/modules/task/standard-objects/task.workspace-entity.ts:138 +#: src/modules/person/standard-objects/person.workspace-entity.ts:169 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:125 +#: src/modules/note/standard-objects/note.workspace-entity.ts:100 +#: src/modules/company/standard-objects/company.workspace-entity.ts:156 +#: src/engine/twenty-orm/custom.workspace-entity.ts:63 +msgid "The creator of the record" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:88 +msgid "The current statuses of the workflow versions" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message.workspace-entity.ts:68 +msgid "The date the message was received" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:129 +msgid "The executor of the workflow" +msgstr "" + +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:104 +msgid "The folder this favorite belongs to" +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:61 +msgid "The opportunity name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:35 +msgid "The workflow event listener name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:78 +msgid "The workflow last published version id" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:69 +msgid "The workflow name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:76 +msgid "The workflow version name" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:105 +msgid "The workflow version status" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:56 +msgid "Thread External Id" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel-message-association.workspace-entity.ts:57 +msgid "Thread id from the messaging provider" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:349 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:350 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:297 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:298 +msgid "Throttle Failure Count" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:314 +msgid "Time format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:268 +msgid "Time zone" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:155 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:166 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:198 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:34 +#: src/modules/task/standard-objects/task.workspace-entity.ts:185 +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:211 +#: src/modules/note/standard-objects/note.workspace-entity.ts:131 +#: src/modules/company/standard-objects/company.workspace-entity.ts:251 +#: src/engine/twenty-orm/custom.workspace-entity.ts:134 +msgid "Timeline Activities" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:252 +msgid "Timeline Activities linked to the company" +msgstr "" + +#: src/modules/note/standard-objects/note.workspace-entity.ts:132 +msgid "Timeline Activities linked to the note." +msgstr "" + +#: src/modules/opportunity/standard-objects/opportunity.workspace-entity.ts:212 +msgid "Timeline Activities linked to the opportunity." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:199 +msgid "Timeline activities linked to the run" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:186 +msgid "Timeline Activities linked to the task." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:167 +msgid "Timeline activities linked to the version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:156 +msgid "Timeline activities linked to the workflow" +msgstr "" + +#: src/engine/twenty-orm/custom.workspace-entity.ts:139 +msgid "Timeline Activities tied to the {label}" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:33 +msgid "Timeline Activity" +msgstr "" + +#: src/modules/task/standard-objects/task.workspace-entity.ts:68 +#: src/modules/note/standard-objects/note.workspace-entity.ts:66 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:39 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:40 +msgid "Title" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:59 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:135 +#: src/modules/attachment/standard-objects/attachment.workspace-entity.ts:60 +msgid "Type" +msgstr "" + +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:98 +#: src/modules/calendar/common/standard-objects/calendar-event.workspace-entity.ts:99 +msgid "Update DateTime" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:126 +msgid "User Email" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:135 +msgid "User Id" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:270 +msgid "User time zone" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:279 +msgid "User's preferred date format" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:315 +msgid "User's preferred time format" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:51 +msgid "Value" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:104 +msgid "Version status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:94 +msgid "Version steps" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:84 +msgid "Version trigger" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:110 +msgid "Versions" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:31 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:57 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:70 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:67 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:38 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:39 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:85 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:208 +msgid "View" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:30 +msgid "View Field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:60 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:75 +msgid "View Field position" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:86 +msgid "View Field related view" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:65 +msgid "View Field size" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:46 +msgid "View Field target field" +msgstr "" + +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:55 +msgid "View Field visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:117 +#: src/modules/view/standard-objects/view.workspace-entity.ts:118 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:31 +msgid "View Fields" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:23 +msgid "View Filter" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:60 +msgid "View Filter Display Value" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:83 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:27 +msgid "View Filter Group" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:82 +msgid "View Filter Group Id" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:153 +#: src/modules/view/standard-objects/view.workspace-entity.ts:154 +#: src/modules/view/standard-objects/view-filter-group.workspace-entity.ts:28 +msgid "View Filter Groups" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:43 +msgid "View Filter operand" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:68 +msgid "View Filter related view" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:35 +msgid "View Filter target field" +msgstr "" + +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:52 +msgid "View Filter value" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:141 +#: src/modules/view/standard-objects/view.workspace-entity.ts:142 +#: src/modules/view/standard-objects/view-filter.workspace-entity.ts:24 +msgid "View Filters" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:21 +msgid "View Group" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:71 +msgid "View Group related view" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:33 +msgid "View Group target field" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:42 +msgid "View Group visibility" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:129 +#: src/modules/view/standard-objects/view.workspace-entity.ts:130 +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:22 +msgid "View Groups" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:80 +msgid "View icon" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:88 +msgid "View Kanban column field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:69 +msgid "View key" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:44 +msgid "View name" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:99 +msgid "View position" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:24 +msgid "View Sort" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:49 +msgid "View Sort direction" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:58 +msgid "View Sort related view" +msgstr "" + +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:40 +msgid "View Sort target field" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:165 +#: src/modules/view/standard-objects/view.workspace-entity.ts:166 +#: src/modules/view/standard-objects/view-sort.workspace-entity.ts:25 +msgid "View Sorts" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:52 +msgid "View target object" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:60 +msgid "View type" +msgstr "" + +#: src/modules/view/standard-objects/view.workspace-entity.ts:32 +msgid "Views" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:96 +#: src/modules/messaging/common/standard-objects/message-channel.workspace-entity.ts:97 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:186 +#: src/modules/calendar/common/standard-objects/calendar-channel.workspace-entity.ts:187 +msgid "Visibility" +msgstr "" + +#: src/modules/view/standard-objects/view-group.workspace-entity.ts:41 +#: src/modules/view/standard-objects/view-field.workspace-entity.ts:54 +msgid "Visible" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:18 +msgid "Webhook" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:40 +msgid "Webhook operation" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:50 +msgid "Webhook operations" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:31 +msgid "Webhook target url" +msgstr "" + +#: src/modules/webhook/standard-objects/webhook.workspace-entity.ts:19 +msgid "Webhooks" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:57 +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:127 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:172 +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:43 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:194 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:133 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:148 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:163 +msgid "Workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:133 +msgid "Workflow event listeners linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:173 +msgid "Workflow linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:99 +msgid "Workflow record position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:52 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:224 +msgid "Workflow Run" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:81 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:82 +msgid "Workflow run ended at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:147 +msgid "Workflow run position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:71 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:72 +msgid "Workflow run started at" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:91 +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:92 +msgid "Workflow run status" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:53 +msgid "Workflow Runs" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:143 +msgid "Workflow runs linked to the version." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:122 +msgid "Workflow runs linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:158 +msgid "Workflow version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:65 +msgid "Workflow Version" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-run.workspace-entity.ts:159 +msgid "Workflow version linked to the run." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:116 +msgid "Workflow version position" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:66 +msgid "Workflow Versions" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:111 +msgid "Workflow versions linked to the workflow." +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:22 +msgid "WorkflowEventListener" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:44 +msgid "WorkflowEventListener workflow" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-event-listener.workspace-entity.ts:23 +msgid "WorkflowEventListeners" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow.workspace-entity.ts:58 +msgid "Workflows" +msgstr "" + +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:209 +msgid "WorkflowVersion" +msgstr "" + +#: src/modules/workflow/common/standard-objects/workflow-version.workspace-entity.ts:128 +msgid "WorkflowVersion workflow" +msgstr "" + +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:101 +msgid "Workspace member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:76 +#: src/modules/timeline/standard-objects/timeline-activity.workspace-entity.ts:104 +#: src/modules/timeline/standard-objects/audit-log.workspace-entity.ts:90 +#: src/modules/messaging/common/standard-objects/message-participant.workspace-entity.ts:100 +#: src/modules/favorite/standard-objects/favorite.workspace-entity.ts:58 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:138 +#: src/modules/calendar/common/standard-objects/calendar-event-participant.workspace-entity.ts:139 +msgid "Workspace Member" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:118 +msgid "Workspace member avatar" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:89 +msgid "Workspace member name" +msgstr "" + +#: src/modules/workspace-member/standard-objects/workspace-member.workspace-entity.ts:77 +msgid "Workspace Members" +msgstr "" + +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:43 +#: src/modules/blocklist/standard-objects/blocklist.workspace-entity.ts:44 +msgid "WorkspaceMember" +msgstr "" + +#: src/modules/person/standard-objects/person.workspace-entity.ts:99 +#: src/modules/company/standard-objects/company.workspace-entity.ts:103 +msgid "X" +msgstr "" + +#: src/modules/company/standard-objects/company.workspace-entity.ts:177 +msgid "Your team member responsible for managing the company account" +msgstr "" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/zh-Hans.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/zh-CN.po similarity index 99% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/zh-Hans.po rename to packages/twenty-server/src/engine/core-modules/i18n/locales/zh-CN.po index adfe825b8..0da8a1ad6 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/zh-Hans.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/zh-CN.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: zh-Hans\n" -"Project-Id-Version: \n" +"Language: zh\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: Chinese Simplified\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: zh-CN\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "X" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "负责管理公司账户的团队成员" + diff --git a/packages/twenty-server/src/engine/core-modules/i18n/locales/zh-Hant.po b/packages/twenty-server/src/engine/core-modules/i18n/locales/zh-TW.po similarity index 99% rename from packages/twenty-server/src/engine/core-modules/i18n/locales/zh-Hant.po rename to packages/twenty-server/src/engine/core-modules/i18n/locales/zh-TW.po index 685c29fde..fa633ccea 100644 --- a/packages/twenty-server/src/engine/core-modules/i18n/locales/zh-Hant.po +++ b/packages/twenty-server/src/engine/core-modules/i18n/locales/zh-TW.po @@ -1,17 +1,22 @@ msgid "" msgstr "" -"POT-Creation-Date: 2025-02-01 10:10+0100\n" +"POT-Creation-Date: 2025-01-29 18:14+0100\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: @lingui/cli\n" -"Language: zh-Hant\n" -"Project-Id-Version: \n" +"Language: zh\n" +"Project-Id-Version: cf448e737e0d6d7b78742f963d761c61\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" +"PO-Revision-Date: 2025-02-09 12:39\n" "Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" +"Language-Team: Chinese Traditional\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: cf448e737e0d6d7b78742f963d761c61\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: zh-TW\n" +"X-Crowdin-File: /packages/twenty-server/src/engine/core-modules/i18n/locales/en.po\n" +"X-Crowdin-File-ID: 31\n" #: src/modules/view/standard-objects/view-field.workspace-entity.ts:32 msgid "(System) View Fields" @@ -2240,3 +2245,4 @@ msgstr "X" #: src/modules/company/standard-objects/company.workspace-entity.ts:177 msgid "Your team member responsible for managing the company account" msgstr "負責管理公司帳戶的團隊成員" + diff --git a/packages/twenty-server/src/engine/core-modules/user-workspace/user-workspace.service.ts b/packages/twenty-server/src/engine/core-modules/user-workspace/user-workspace.service.ts index cb8b5dce9..b5aa36fd2 100644 --- a/packages/twenty-server/src/engine/core-modules/user-workspace/user-workspace.service.ts +++ b/packages/twenty-server/src/engine/core-modules/user-workspace/user-workspace.service.ts @@ -13,6 +13,7 @@ import { AuthExceptionCode, } from 'src/engine/core-modules/auth/auth.exception'; import { AvailableWorkspaceOutput } from 'src/engine/core-modules/auth/dto/available-workspaces.output'; +import { DomainManagerService } from 'src/engine/core-modules/domain-manager/services/domain-manager.service'; import { UserWorkspace } from 'src/engine/core-modules/user-workspace/user-workspace.entity'; import { User } from 'src/engine/core-modules/user/user.entity'; import { userValidator } from 'src/engine/core-modules/user/user.validate'; @@ -24,7 +25,6 @@ import { TwentyORMGlobalManager } from 'src/engine/twenty-orm/twenty-orm-global. import { WorkspaceEventEmitter } from 'src/engine/workspace-event-emitter/workspace-event-emitter'; import { WorkspaceMemberWorkspaceEntity } from 'src/modules/workspace-member/standard-objects/workspace-member.workspace-entity'; import { assert } from 'src/utils/assert'; -import { DomainManagerService } from 'src/engine/core-modules/domain-manager/services/domain-manager.service'; export class UserWorkspaceService extends TypeOrmQueryService { constructor( @@ -70,14 +70,15 @@ export class UserWorkspaceService extends TypeOrmQueryService { await workspaceDataSource?.query( `INSERT INTO ${dataSourceMetadata.schema}."workspaceMember" - ("nameFirstName", "nameLastName", "colorScheme", "userId", "userEmail", "avatarUrl") - VALUES ($1, $2, 'System', $3, $4, $5)`, + ("nameFirstName", "nameLastName", "colorScheme", "userId", "userEmail", "avatarUrl", "locale") + VALUES ($1, $2, 'System', $3, $4, $5, $6)`, [ user.firstName, user.lastName, user.id, user.email, user.defaultAvatarUrl ?? '', + user.locale ?? 'en', ], ); const workspaceMember = await workspaceDataSource?.query( diff --git a/packages/twenty-server/src/engine/core-modules/user/user.entity.ts b/packages/twenty-server/src/engine/core-modules/user/user.entity.ts index e701261a1..58e0ee479 100644 --- a/packages/twenty-server/src/engine/core-modules/user/user.entity.ts +++ b/packages/twenty-server/src/engine/core-modules/user/user.entity.ts @@ -81,6 +81,10 @@ export class User { @DeleteDateColumn({ type: 'timestamptz' }) deletedAt: Date; + @Field(() => String, { nullable: false }) + @Column({ nullable: false, default: 'en' }) + locale: string; + @OneToMany(() => AppToken, (appToken) => appToken.user, { cascade: true, }) diff --git a/packages/twenty-server/src/engine/core-modules/workspace/dtos/update-workspace-input.ts b/packages/twenty-server/src/engine/core-modules/workspace/dtos/update-workspace-input.ts index 2bcc3ee2f..aa4914e08 100644 --- a/packages/twenty-server/src/engine/core-modules/workspace/dtos/update-workspace-input.ts +++ b/packages/twenty-server/src/engine/core-modules/workspace/dtos/update-workspace-input.ts @@ -2,10 +2,10 @@ import { Field, InputType } from '@nestjs/graphql'; import { IsBoolean, + IsNotIn, IsOptional, IsString, Matches, - IsNotIn, } from 'class-validator'; @InputType() @@ -92,11 +92,48 @@ export class UpdateWorkspaceInput { 'au', 'nz', 'za', - 'uk', 'eu', + 'uk', + 'ru', + 'ua', + 'pl', + 'ro', + 'bg', + 'gr', + 'cz', + 'sk', + 'hu', + 'hr', + 'si', + 'rs', + 'me', + 'ba', + 'mk', + 'al', + 'az', + 'tr', + 'cy', + 'lv', + 'lt', + 'ee', + 'fi', + 'is', + 'no', + 'se', + 'dk', 'asia', 'africa', 'america', + 'europe', + 'north-america', + 'south-africa', + 'north-africa', + 'south-america', + 'oceania', + 'paris', + 'london', + 'new-york', + 'san-francisco', ]) subdomain?: string; diff --git a/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.service.ts b/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.service.ts index c1d180947..0fb319308 100644 --- a/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.service.ts +++ b/packages/twenty-server/src/engine/metadata-modules/field-metadata/field-metadata.service.ts @@ -609,8 +609,6 @@ export class FieldMetadataService extends TypeOrmQueryService