Compare commits

...

10 Commits

Author SHA1 Message Date
fd13bb0258 Fixes for production (#13164)
Some checks failed
CI Front / front-sb-test (2, modules) (push) Has been cancelled
CI Front / front-sb-test (2, pages) (push) Has been cancelled
CI Front / front-sb-test (2, performance) (push) Has been cancelled
CI Front / front-sb-test (3, modules) (push) Has been cancelled
CI Front / front-sb-test (3, pages) (push) Has been cancelled
CI Front / front-sb-test (3, performance) (push) Has been cancelled
CI Front / front-sb-test (4, modules) (push) Has been cancelled
CI Front / front-sb-test (4, pages) (push) Has been cancelled
CI Front / front-sb-test (4, performance) (push) Has been cancelled
CI Front / merge-reports-and-check-coverage (modules) (push) Has been cancelled
CI Front / merge-reports-and-check-coverage (pages) (push) Has been cancelled
CI Front / merge-reports-and-check-coverage (performance) (push) Has been cancelled
CI Front / front-chromatic-deployment (push) Has been cancelled
CI Front / front-task (lint) (push) Has been cancelled
CI Front / front-task (test) (push) Has been cancelled
CI Front / front-task (typecheck) (push) Has been cancelled
CI Front / ci-front-status-check (push) Has been cancelled
CI Server / server-setup (push) Has been cancelled
CI Server / server-test (push) Has been cancelled
CI Server / server-integration-test (1) (push) Has been cancelled
CI Server / server-integration-test (2) (push) Has been cancelled
CI Server / server-integration-test (3) (push) Has been cancelled
CI Server / server-integration-test (4) (push) Has been cancelled
CI Server / ci-server-status-check (push) Has been cancelled
CI Shared / shared-test (lint) (push) Has been cancelled
CI Shared / shared-test (test) (push) Has been cancelled
CI Shared / shared-test (typecheck) (push) Has been cancelled
CI Shared / ci-shared-status-check (push) Has been cancelled
CI Website / website-build (push) Has been cancelled
CI Website / ci-website-status-check (push) Has been cancelled
This PR fixes two bugs : 
- Some important push item to focus stack calls were setting global
hotkey conflicting keys to true (like open dropdown)
- Icon picker matrix items were broken
2025-07-10 15:47:09 +00:00
bed2c640c5 relation-integration-tests (#13113) 2025-07-10 16:55:36 +02:00
77b9217467 Fix backspace shortcut preventing text deletion in command menu search bar (#13157)
Before:


https://github.com/user-attachments/assets/4d3ba0fb-9655-4f06-af14-2a4cab737a4a


After:


https://github.com/user-attachments/assets/f1bbf360-a09f-4440-9d05-2c9dc1f41f1f
2025-07-10 14:55:23 +00:00
518dfa81c6 i18n - translations (#13159)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2025-07-10 16:51:09 +02:00
b9e5169f5a 1.1 changelog (#13151) 2025-07-10 16:50:59 +02:00
cebd66c124 Fix: Inconsistent Workflow Label Letter Casing #13108 (#13144)
Hi,
I’ve resolved the workflow form-level issue referenced in ID: #13108.
If any changes are required, please let me know—I’ll be happy to work on
them.

![Screenshot from 2025-07-10
11-57-54](https://github.com/user-attachments/assets/073df5ef-6a36-4148-baaa-4efa0ba2e74b)

---------

Co-authored-by: readul-islam <developer.readul@gamil.com>
2025-07-10 16:46:35 +02:00
87b5f5448d i18n - translations (#13154)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2025-07-10 15:25:07 +02:00
aede38000e feat: SMTP Driver Integration (#12993)
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
Co-authored-by: Félix Malfait <felix@twenty.com>
2025-07-10 15:17:26 +02:00
fe9de195c3 Fix record table click outside (#13149)
Fixes https://github.com/twentyhq/twenty/issues/13139 introduced by
https://github.com/twentyhq/twenty/pull/13127

The record table click outside was triggered when it shouldn't have been
(clicking inside a dropdown in the side panel).
This PR fixes it by checking the type of the focused element before
triggering the click outside.
Before, we had a check on the current hotkey scope but I removed this
part during the refactoring and I didn't replace it thinking that it
wasn't useful anymore.

Video QA:



https://github.com/user-attachments/assets/68baa9e6-2593-4840-923b-d631c806d9ea
2025-07-10 14:40:05 +02:00
4467de1b5c Move apikey/webhook migration command from 1.3 to 1.1 (#13146) 2025-07-10 09:15:31 +00:00
146 changed files with 9365 additions and 1866 deletions

143
nx.json
View File

@ -1,6 +1,12 @@
{
"workspaceLayout": {
"appsDir": "packages",
"libsDir": "packages"
},
"namedInputs": {
"default": ["{projectRoot}/**/*"],
"default": [
"{projectRoot}/**/*"
],
"excludeStories": [
"default",
"!{projectRoot}/.storybook/*",
@ -28,17 +34,26 @@
"targetDefaults": {
"build": {
"cache": true,
"inputs": ["^production", "production"],
"dependsOn": ["^build"]
"inputs": [
"^production",
"production"
],
"dependsOn": [
"^build"
]
},
"start": {
"cache": true,
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"lint": {
"executor": "@nx/eslint:lint",
"cache": true,
"outputs": ["{options.outputFile}"],
"outputs": [
"{options.outputFile}"
],
"options": {
"eslintConfig": "{projectRoot}/.eslintrc.cjs",
"cache": true,
@ -46,10 +61,16 @@
"ignorePath": "{workspaceRoot}/.gitignore"
},
"configurations": {
"ci": { "cacheStrategy": "content" },
"fix": { "fix": true }
"ci": {
"cacheStrategy": "content"
},
"fix": {
"fix": true
}
},
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"fmt": {
"executor": "nx:run-commands",
@ -63,10 +84,16 @@
"write": false
},
"configurations": {
"ci": { "cacheStrategy": "content" },
"fix": { "write": true }
"ci": {
"cacheStrategy": "content"
},
"fix": {
"write": true
}
},
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"typecheck": {
"executor": "nx:run-commands",
@ -76,24 +103,34 @@
"command": "tsc -b tsconfig.json --incremental"
},
"configurations": {
"watch": { "watch": true }
"watch": {
"watch": true
}
},
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"test": {
"executor": "@nx/jest:jest",
"cache": true,
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"inputs": [
"^default",
"excludeStories",
"{workspaceRoot}/jest.preset.js"
],
"outputs": ["{projectRoot}/coverage"],
"outputs": [
"{projectRoot}/coverage"
],
"options": {
"jestConfig": "{projectRoot}/jest.config.ts",
"coverage": true,
"coverageReporters": ["text-summary"],
"coverageReporters": [
"text-summary"
],
"cacheDirectory": "../../.cache/jest/{projectRoot}"
},
"configurations": {
@ -101,31 +138,49 @@
"ci": true,
"maxWorkers": 3
},
"coverage": { "coverageReporters": ["lcov", "text"] },
"watch": { "watch": true }
"coverage": {
"coverageReporters": [
"lcov",
"text"
]
},
"watch": {
"watch": true
}
}
},
"test:e2e": {
"cache": true,
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"storybook:build": {
"executor": "nx:run-commands",
"cache": true,
"inputs": ["^default", "excludeTests"],
"outputs": ["{projectRoot}/{options.output-dir}"],
"inputs": [
"^default",
"excludeTests"
],
"outputs": [
"{projectRoot}/{options.output-dir}"
],
"options": {
"cwd": "{projectRoot}",
"command": "VITE_DISABLE_TYPESCRIPT_CHECKER=true VITE_DISABLE_ESLINT_CHECKER=true storybook build --test",
"output-dir": "storybook-static",
"config-dir": ".storybook"
},
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
},
"storybook:serve:dev": {
"executor": "nx:run-commands",
"cache": true,
"dependsOn": ["^build"],
"dependsOn": [
"^build"
],
"options": {
"cwd": "{projectRoot}",
"command": "storybook dev",
@ -134,7 +189,9 @@
},
"storybook:serve:static": {
"executor": "nx:run-commands",
"dependsOn": ["storybook:build"],
"dependsOn": [
"storybook:build"
],
"options": {
"cwd": "{projectRoot}",
"command": "npx http-server {args.staticDir} -a={args.host} --port={args.port} --silent={args.silent}",
@ -147,8 +204,13 @@
"storybook:test": {
"executor": "nx:run-commands",
"cache": true,
"inputs": ["^default", "excludeTests"],
"outputs": ["{projectRoot}/coverage/storybook"],
"inputs": [
"^default",
"excludeTests"
],
"outputs": [
"{projectRoot}/coverage/storybook"
],
"options": {
"cwd": "{projectRoot}",
"commands": [
@ -164,7 +226,10 @@
},
"storybook:test:no-coverage": {
"executor": "nx:run-commands",
"inputs": ["^default", "excludeTests"],
"inputs": [
"^default",
"excludeTests"
],
"options": {
"cwd": "{projectRoot}",
"commands": [
@ -192,7 +257,9 @@
"checkCoverage": true
},
"configurations": {
"text": { "reporter": "text" }
"text": {
"reporter": "text"
}
}
},
"storybook:serve-and-test:static": {
@ -252,12 +319,20 @@
},
"@nx/vite:test": {
"cache": true,
"inputs": ["default", "^default"]
"inputs": [
"default",
"^default"
]
},
"@nx/vite:build": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["default", "^default"]
"dependsOn": [
"^build"
],
"inputs": [
"default",
"^default"
]
}
},
"installation": {
@ -289,10 +364,12 @@
"tasksRunnerOptions": {
"default": {
"options": {
"cacheableOperations": ["storybook:build"]
"cacheableOperations": [
"storybook:build"
]
}
}
},
"useInferencePlugins": false,
"defaultBase": "main"
}
}

View File

@ -435,7 +435,6 @@ export type ConnectionParameters = {
password: Scalars['String'];
port: Scalars['Float'];
secure?: InputMaybe<Scalars['Boolean']>;
username: Scalars['String'];
};
export type ConnectionParametersOutput = {
@ -444,7 +443,6 @@ export type ConnectionParametersOutput = {
password: Scalars['String'];
port: Scalars['Float'];
secure?: Maybe<Scalars['Boolean']>;
username: Scalars['String'];
};
export type CreateApiKeyDto = {
@ -708,7 +706,7 @@ export enum FeatureFlagKey {
IS_AIRTABLE_INTEGRATION_ENABLED = 'IS_AIRTABLE_INTEGRATION_ENABLED',
IS_AI_ENABLED = 'IS_AI_ENABLED',
IS_FIELDS_PERMISSIONS_ENABLED = 'IS_FIELDS_PERMISSIONS_ENABLED',
IS_IMAP_ENABLED = 'IS_IMAP_ENABLED',
IS_IMAP_SMTP_CALDAV_ENABLED = 'IS_IMAP_SMTP_CALDAV_ENABLED',
IS_JSON_FILTER_ENABLED = 'IS_JSON_FILTER_ENABLED',
IS_MORPH_RELATION_ENABLED = 'IS_MORPH_RELATION_ENABLED',
IS_POSTGRESQL_INTEGRATION_ENABLED = 'IS_POSTGRESQL_INTEGRATION_ENABLED',
@ -3270,7 +3268,7 @@ export type GetConnectedImapSmtpCaldavAccountQueryVariables = Exact<{
}>;
export type GetConnectedImapSmtpCaldavAccountQuery = { __typename?: 'Query', getConnectedImapSmtpCaldavAccount: { __typename?: 'ConnectedImapSmtpCaldavAccount', id: string, handle: string, provider: string, accountOwnerId: string, connectionParameters?: { __typename?: 'ImapSmtpCaldavConnectionParameters', IMAP?: { __typename?: 'ConnectionParametersOutput', host: string, port: number, secure?: boolean | null, username: string, password: string } | null, SMTP?: { __typename?: 'ConnectionParametersOutput', host: string, port: number, secure?: boolean | null, username: string, password: string } | null, CALDAV?: { __typename?: 'ConnectionParametersOutput', host: string, port: number, secure?: boolean | null, username: string, password: string } | null } | null } };
export type GetConnectedImapSmtpCaldavAccountQuery = { __typename?: 'Query', getConnectedImapSmtpCaldavAccount: { __typename?: 'ConnectedImapSmtpCaldavAccount', id: string, handle: string, provider: string, accountOwnerId: string, connectionParameters?: { __typename?: 'ImapSmtpCaldavConnectionParameters', IMAP?: { __typename?: 'ConnectionParametersOutput', host: string, port: number, secure?: boolean | null, password: string } | null, SMTP?: { __typename?: 'ConnectionParametersOutput', host: string, port: number, secure?: boolean | null, password: string } | null, CALDAV?: { __typename?: 'ConnectionParametersOutput', host: string, port: number, secure?: boolean | null, password: string } | null } | null } };
export type CreateDatabaseConfigVariableMutationVariables = Exact<{
key: Scalars['String'];
@ -6003,21 +6001,18 @@ export const GetConnectedImapSmtpCaldavAccountDocument = gql`
host
port
secure
username
password
}
SMTP {
host
port
secure
username
password
}
CALDAV {
host
port
secure
username
password
}
}

View File

@ -435,7 +435,6 @@ export type ConnectionParameters = {
password: Scalars['String'];
port: Scalars['Float'];
secure?: InputMaybe<Scalars['Boolean']>;
username: Scalars['String'];
};
export type ConnectionParametersOutput = {
@ -444,7 +443,6 @@ export type ConnectionParametersOutput = {
password: Scalars['String'];
port: Scalars['Float'];
secure?: Maybe<Scalars['Boolean']>;
username: Scalars['String'];
};
export type CreateApiKeyDto = {
@ -672,7 +670,7 @@ export enum FeatureFlagKey {
IS_AIRTABLE_INTEGRATION_ENABLED = 'IS_AIRTABLE_INTEGRATION_ENABLED',
IS_AI_ENABLED = 'IS_AI_ENABLED',
IS_FIELDS_PERMISSIONS_ENABLED = 'IS_FIELDS_PERMISSIONS_ENABLED',
IS_IMAP_ENABLED = 'IS_IMAP_ENABLED',
IS_IMAP_SMTP_CALDAV_ENABLED = 'IS_IMAP_SMTP_CALDAV_ENABLED',
IS_JSON_FILTER_ENABLED = 'IS_JSON_FILTER_ENABLED',
IS_MORPH_RELATION_ENABLED = 'IS_MORPH_RELATION_ENABLED',
IS_POSTGRESQL_INTEGRATION_ENABLED = 'IS_POSTGRESQL_INTEGRATION_ENABLED',

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} sal ontkoppel word van die volgende rol:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24u ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Rekeningverwydering"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Rekeninge"
@ -978,6 +982,36 @@ msgstr "Deur gebruik te maak van Twenty, stem jy in tot die"
msgid "Calculate"
msgstr "Bereken"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Stel 'n SSO-verbinding op"
msgid "Configure and customize your calendar preferences."
msgstr "Stel op en pas jou kalendervoorkeure aan."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Stel op hoe datums regdeur die app vertoon word"
msgid "Configure how we should display your events in your calendar"
msgstr "Stel hoe ons jou gebeurtenisse in jou kalender moet vertoon"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Stel jou e-posse en kalender instellings op."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Verbind 'n nuwe rekening met jou werkruimte"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Verbind met Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Verbind met Microsoft"
msgid "Connected accounts"
msgstr "Verbonde rekeninge"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Datum en tyd"
msgid "Date format"
msgstr "Datumformaat"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Wysig velde"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-pos"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "E-pos kan nie leeg wees nie"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Leë Objek"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Voer werkvloeie uit"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Versteek leë groepe"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "As jy hierdie sleutel verloor het, kan jy dit regenereer, maar wees bewus dat enige skrip wat hierdie sleutel gebruik, opgedateer sal moet word. Tik asseblief \"{confirmationValue}\" in om te bevestig."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japanees"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Bekendstel"
msgid "Layout"
msgstr "Uitleg"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Metadataleêr generasie het misluk"
msgid "Min"
msgstr "Min"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nuwe rekening"
msgid "New Approved Access Domain"
msgstr "Nuwe Goedgekeurde Toegangsdomein"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nuwe Veld"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Bladsy Nie Gevind"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Wagwoord"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Enkelvoudige en meervoudige name moet verskil"
msgid "Skip"
msgstr "Slaan oor"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Werkruimte"
@ -6503,6 +6686,11 @@ msgstr "Jy mag nie rekords vir hierdie voorwerp skep nie"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} سيتم إلغاء تعيينه من الدور التالي:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24 ساعة ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "حذف الحساب"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "الحسابات"
@ -978,6 +982,36 @@ msgstr "باستخدامك Twenty، فإنك توافق على"
msgid "Calculate"
msgstr "احسب"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "تهيئة اتصال SSO"
msgid "Configure and customize your calendar preferences."
msgstr "قم بتهيئة وتخصيص تفضيلات التقويم الخاصة بك."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "ضبط كيفية عرض التواريخ في التطبيق"
msgid "Configure how we should display your events in your calendar"
msgstr "حدد كيفية عرض أحداثك في التقويم الخاص بك"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "ضبط إعدادات بريدك الإلكتروني والتقويم."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "ربط حساب جديد بمساحة العمل الخاصة بك"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "الاتصال بـ Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "الاتصال بـ Microsoft"
msgid "Connected accounts"
msgstr "الحسابات المتصلة"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "التاريخ والوقت"
msgid "Date format"
msgstr "تنسيق التاريخ"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "تحرير الحقول"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "البريد الإلكتروني"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "لا يمكن أن يكون البريد الإلكتروني فارغً
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "كائن فارغ"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "تصدير العمليات"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "إخفاء المجموعات الفارغة"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "إذا كنت قد فقدت هذا المفتاح، يمكنك توليده مرة أخرى، ولكن كن على دراية أن أي سكربت يستخدم هذا المفتاح سيحتاج إلى تحديث. الرجاء كتابة \"{confirmationValue}\" للتأكيد."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "اليابانية"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "إطلاق"
msgid "Layout"
msgstr "التخطيط"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "فشل في توليد ملف البيانات الوصفية"
msgid "Min"
msgstr "الأدنى"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "حساب جديد"
msgid "New Approved Access Domain"
msgstr "نطاق وصول معتمد جديد"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "حقل جديد"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "الصفحة غير موجودة"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "كلمة السر"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "يجب أن تكون الأسماء المفردة والجمع مختل
msgid "Skip"
msgstr "تخطى"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "مساحة العمل"
@ -6503,6 +6686,11 @@ msgstr "غير مسموح لك بإنشاء سجلات لهذا الكائن"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} serà desassignat del següent rol:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Eliminació de compte"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Comptes"
@ -978,6 +982,36 @@ msgstr "En utilitzar Twenty, accepteu les"
msgid "Calculate"
msgstr "Calcula"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Configureu una connexió SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configureu i personalitzeu les vostres preferències del calendari."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Configureu com es mostren les dates a tota l'aplicació"
msgid "Configure how we should display your events in your calendar"
msgstr "Configura com hauríem de mostrar els teus esdeveniments al teu calendari"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Configureu els vostres correus electrònics i les preferències del cale
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Connecteu un nou compte al vostre espai de treball"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Connecta amb Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Connecta amb Microsoft"
msgid "Connected accounts"
msgstr "Comptes connectats"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Data i hora"
msgid "Date format"
msgstr "Format de data"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Edita camps"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "Correu electrònic"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "El correu electrònic no pot estar buit"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Objecte Buit"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Exportar fluxos de treball"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Amaga grups buits"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Si has perdut aquesta clau, pots regenerar-la, però tingues en compte que qualsevol script que utilitzi aquesta clau haurà de ser actualitzat. Si us plau, escriu \"{confirmationValue}\" per confirmar."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japonès"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Iniciar"
msgid "Layout"
msgstr "Disseny"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Error en la generació del fitxer de metadades"
msgid "Min"
msgstr "Mínim"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nou compte"
msgid "New Approved Access Domain"
msgstr "Nou domini d'accés aprovat"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nou camp"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Pàgina No Trobada"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Contrasenya"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Els noms en singular i plural han de ser diferents"
msgid "Skip"
msgstr "Omitir"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Espai de treball"
@ -6503,6 +6686,11 @@ msgstr "No tens permís per crear registres en aquest objecte"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} bude odebrán z následující role:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Smazání účtu"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Účty"
@ -978,6 +982,36 @@ msgstr "Použitím Twenty souhlasíte s"
msgid "Calculate"
msgstr "Spočítat"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Nakonfigurujte připojení SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Nakonfigurujte a přizpůsobte si předvolby kalendáře."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Nakonfigurujte, jak se mají zobrazovat data v aplikaci"
msgid "Configure how we should display your events in your calendar"
msgstr "Nakonfigurujte, jak by se měly zobrazovat vaše události ve vašem kalendáři"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Nakonfigurujte nastavení svých e-mailů a kalendáře."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Připojte nový účet k vašemu pracovnímu prostoru"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Připojit s Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Připojit s Microsoft"
msgid "Connected accounts"
msgstr "Připojené účty"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Datum a čas"
msgid "Date format"
msgstr "Formát data"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Upravit pole"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-mail"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "Email nesmí být prázdný"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Prázdný objekt"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Exportovat pracovní postupy"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Skrýt prázdné skupiny"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Pokud jste ztratili tento klíč, můžete jej obnovit, ale mějte na paměti, že všechny skripty používající tento klíč bude potřeba aktualizovat. Prosím, napište \"<b>{confirmationValue}</b>\" pro potvrzení."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japonština"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Spustit"
msgid "Layout"
msgstr "Rozvržení"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Generování souboru metadat selhalo"
msgid "Min"
msgstr "Minimální"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nový účet"
msgid "New Approved Access Domain"
msgstr "Nová schválená přístupová doména"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nové pole"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Stránka nenalezena"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Heslo"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Jednotné a množné názvy se musí lišit"
msgid "Skip"
msgstr "Přeskočit"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Pracovní prostor"
@ -6503,6 +6686,11 @@ msgstr "Nemáte povoleno vytvářet záznamy pro tento objekt"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} vil blive fjernet fra f\\u00f8lgende rolle:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24 timer ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Konto Sletning"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Konti"
@ -978,6 +982,36 @@ msgstr "Ved at bruge Twenty accepterer du"
msgid "Calculate"
msgstr "Beregn"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Konfigurer en SSO-forbindelse"
msgid "Configure and customize your calendar preferences."
msgstr "Konfigurer og tilpas dine kalenderpræferencer."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Konfigurer, hvordan datoer vises i hele appen"
msgid "Configure how we should display your events in your calendar"
msgstr "Konfigurer, hvordan vi skal vise dine begivenheder i din kalender"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Konfigurer dine e-mails og kalenderindstillinger."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Tilslut en ny konto til dit arbejdsområde"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Forbind med Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Forbind med Microsoft"
msgid "Connected accounts"
msgstr "Forbundne konti"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Dato og tid"
msgid "Date format"
msgstr "Datoformat"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Rediger felter"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-mail"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "E-mail kan ikke være tom"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Tomt Objekt"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Eksportér arbejdsprocesser"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Skjul tomme grupper"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Hvis du har mistet denne nøgle, kan du generere den igen, men vær opmærksom på, at alle script, der anvender denne nøgle, skal opdateres. Venligst indtast \"{confirmationValue}\" for at bekræfte."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japansk"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Start"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Generering af metadatafil mislykkedes"
msgid "Min"
msgstr "Min."
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Ny konto"
msgid "New Approved Access Domain"
msgstr "Nyt godkendt adgangsdomæne"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nyt felt"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Side ikke fundet"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Adgangskode"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Entals- og flertalsnavne skal være forskellige"
msgid "Skip"
msgstr "Spring over"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Arbejdsområde"
@ -6503,6 +6686,11 @@ msgstr "Du har ikke tilladelse til at oprette poster i dette objekt"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} wird von folgender Rolle abgezogen:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Kontolöschung"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Konten"
@ -978,6 +982,36 @@ msgstr "Durch die Nutzung von Twenty stimmen Sie den"
msgid "Calculate"
msgstr "Berechnen"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "SSO-Verbindung konfigurieren"
msgid "Configure and customize your calendar preferences."
msgstr "Kalendereinstellungen konfigurieren und anpassen."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Anzeigen von Datumsangaben in der App konfigurieren"
msgid "Configure how we should display your events in your calendar"
msgstr "Konfigurieren Sie, wie wir Ihre Ereignisse in Ihrem Kalender anzeigen sollen"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "E-Mail- und Kalendereinstellungen konfigurieren."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Neues Konto mit Ihrem Arbeitsbereich verbinden"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Mit Google verbinden"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Mit Microsoft verbinden"
msgid "Connected accounts"
msgstr "Verbundene Konten"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Datum und Uhrzeit"
msgid "Date format"
msgstr "Datumsformat"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Felder bearbeiten"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-Mail"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "E-Mail darf nicht leer sein"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Leeres Objekt"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Workflows exportieren"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Leere Gruppen ausblenden"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "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."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japanisch"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Starten"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Generierung der Metadatendatei fehlgeschlagen"
msgid "Min"
msgstr "Min"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Neues Konto"
msgid "New Approved Access Domain"
msgstr "Neue genehmigte Zugriffsdomäne"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Neues Feld"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Seite nicht gefunden"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Passwort"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Singular- und Pluralnamen müssen unterschiedlich sein"
msgid "Skip"
msgstr "Überspringen"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Arbeitsbereich"
@ -6503,6 +6686,11 @@ msgstr "Sie dürfen keine Datensätze für dieses Objekt erstellen"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "Ο χρήστης {workspaceMemberName} θα αποδεσμευτεί από τον ακόλουθο ρόλο:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24ω ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Διαγραφή Λογαριασμού"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Λογαριασμοί"
@ -978,6 +982,36 @@ msgstr "Χρησιμοποιώντας το Twenty, συμφωνείτε με τ
msgid "Calculate"
msgstr "Υπολογίστε"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Ρυθμίστε μια σύνδεση SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Ρυθμίστε και προσαρμόστε τις προτιμήσεις του ημερολογίου σας."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Ρυθμίστε πώς εμφανίζονται οι ημερομηνί
msgid "Configure how we should display your events in your calendar"
msgstr "Διαμόρφωση του τρόπου εμφάνισης των γεγονότων στο ημερολόγιό σας"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Ρυθμίστε τις ρυθμίσεις email και ημερολογ
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Συνδέστε έναν νέο λογαριασμό με το χώρο εργασίας σας"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Συνδέστε με το Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Συνδέστε με τη Microsoft"
msgid "Connected accounts"
msgstr "Συνδεδεμένοι λογαριασμοί"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Ημερομηνία και ώρα"
msgid "Date format"
msgstr "Μορφή Ημερομηνίας"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Επεξεργασία πεδίων"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "Ηλεκτρονικό ταχυδρομείο"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "Το email δεν μπορεί να είναι κενό"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Κενό Αντικείμενο"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Εξαγωγή workflows"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Απόκρυψη άδειων ομάδων"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Αν έχετε χάσει αυτό το κλειδί, μπορείτε να το ανακτήσετε, αλλά να είστε ενημερωμένοι ότι οποιοδήποτε script χρησιμοποιεί αυτό το κλειδί θα πρέπει να ενημερωθεί. Παρακαλώ πληκτρολογήστε \"{confirmationValue}\" για επιβεβαίωση."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Ιαπωνικά"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Έναρξη"
msgid "Layout"
msgstr "Διάταξη"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Αποτυχία δημιουργίας αρχείου μεταδεδο
msgid "Min"
msgstr "Ελάχιστο"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Νέος λογαριασμός"
msgid "New Approved Access Domain"
msgstr "Νέος Εγκεκριμένος Τομέας Πρόσβασης"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Νέο Πεδίο"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Η Σελίδα Δεν Βρέθηκε"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Κωδικός"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Τα ενικά και πληθυντικά ονόματα πρέπει
msgid "Skip"
msgstr "Παράλειψη"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Περιοχή Εργασίας"
@ -6503,6 +6686,11 @@ msgstr "Δεν επιτρέπεται να δημιουργείτε εγγραφ
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -140,7 +140,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} will be unassigned from the following role:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr "••••••••"
@ -218,8 +220,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr "993"
#~ msgid "993"
#~ msgstr "993"
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -294,6 +296,8 @@ msgstr "Account Deletion"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Accounts"
@ -973,6 +977,36 @@ msgstr "By using Twenty, you agree to the"
msgid "Calculate"
msgstr "Calculate"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr "CalDAV Configuration"
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr "CalDAV Encryption"
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr "CalDAV Password"
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr "CalDAV Port"
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr "CalDAV Server"
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr "caldav.example.com"
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1271,6 +1305,11 @@ msgstr "Configure an SSO connection"
msgid "Configure and customize your calendar preferences."
msgstr "Configure and customize your calendar preferences."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configure CalDAV settings to sync your calendar events."
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1281,6 +1320,16 @@ msgstr "Configure how dates are displayed across the app"
msgid "Configure how we should display your events in your calendar"
msgstr "Configure how we should display your events in your calendar"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr "Configure IMAP settings to receive and sync your emails."
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr "Configure SMTP settings to send emails from your account."
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1288,8 +1337,8 @@ msgstr "Configure your emails and calendar settings."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr "Configure your IMAP email account"
#~ msgid "Configure your IMAP email account"
#~ msgstr "Configure your IMAP email account"
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1310,6 +1359,11 @@ msgstr "Confirm deletion of {roleName} role? This cannot be undone. All members
msgid "Connect a new account to your workspace"
msgstr "Connect a new account to your workspace"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr "Connect Email Account"
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1317,8 +1371,8 @@ msgstr "Connect with Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr "Connect with IMAP"
#~ msgid "Connect with IMAP"
#~ msgstr "Connect with IMAP"
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1330,6 +1384,21 @@ msgstr "Connect with Microsoft"
msgid "Connected accounts"
msgstr "Connected accounts"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr "Connection settings"
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr "Connection successfully created"
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr "Connection successfully updated"
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1711,6 +1780,11 @@ msgstr "Date and time"
msgid "Date format"
msgstr "Date format"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr "Days between triggers"
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2133,6 +2207,13 @@ msgstr "Edit {objectLabel}"
msgid "Edit CRM data structure and fields"
msgstr "Edit CRM data structure and fields"
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr "Edit Email Account"
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2146,8 +2227,8 @@ msgstr "Edit Fields"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr "Edit IMAP Connection"
#~ msgid "Edit IMAP Connection"
#~ msgstr "Edit IMAP Connection"
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2180,7 +2261,7 @@ msgid "Email"
msgstr "Email"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr "Email Address"
@ -2197,8 +2278,8 @@ msgstr "Email cannot be empty"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr "Email Connections"
#~ msgid "Email Connections"
#~ msgstr "Email Connections"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2294,8 +2375,8 @@ msgstr "Empty Object"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr "Encryption"
#~ msgid "Encryption"
#~ msgstr "Encryption"
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2629,6 +2710,11 @@ msgstr "Export workflows"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr "Expression"
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3019,6 +3105,11 @@ msgstr "Hide empty groups"
msgid "Hide hidden groups"
msgstr "Hide hidden groups"
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr "Hours between triggers"
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3086,33 +3177,48 @@ msgstr "If this is unexpected, please verify your settings."
msgid "If youve 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 "If youve 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."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr "IMAP Configuration"
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr "IMAP Connection Details"
#~ msgid "IMAP Connection Details"
#~ msgstr "IMAP Connection Details"
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr "IMAP connection successfully created"
#~ msgid "IMAP connection successfully created"
#~ msgstr "IMAP connection successfully created"
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
msgstr "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr "IMAP connection successfully updated"
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr "IMAP Encryption"
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr "IMAP Password"
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr "IMAP Port"
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr "IMAP Server"
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr "imap.example.com"
@ -3403,7 +3509,7 @@ msgid "Japanese"
msgstr "Japanese"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr "john.doe@example.com"
@ -3522,6 +3628,21 @@ msgstr "Launch"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr "Leave blank if you don't need calendar sync."
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr "Leave blank if you don't need to import emails."
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr "Leave blank if you don't need to send emails."
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3723,6 +3844,11 @@ msgstr "Metadata file generation failed"
msgid "Min"
msgstr "Min"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr "Minutes between triggers"
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3899,6 +4025,13 @@ msgstr "New account"
msgid "New Approved Access Domain"
msgstr "New Approved Access Domain"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr "New Email Account"
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3907,8 +4040,8 @@ msgstr "New Field"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr "New IMAP Connection"
#~ msgid "New IMAP Connection"
#~ msgstr "New IMAP Connection"
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4386,7 +4519,6 @@ msgstr "Page Not Found"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Password"
@ -5298,8 +5430,6 @@ msgstr "Setting up your database..."
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5402,6 +5532,36 @@ msgstr "Singular and plural names must be different"
msgid "Skip"
msgstr "Skip"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr "SMTP Configuration"
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr "SMTP Encryption"
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr "SMTP Password"
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr "SMTP Port"
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr "SMTP Server"
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr "smtp.example.com"
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5936,6 +6096,22 @@ msgstr "Trial expired. Please contact your admin"
msgid "Trial expired. Please update your billing details."
msgstr "Trial expired. Please update your billing details."
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr "Trigger at hour"
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr "Trigger at minute"
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr "Trigger interval"
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6030,10 +6206,15 @@ msgstr "update"
msgid "Update"
msgstr "Update"
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr "Update your IMAP email account configuration"
#~ msgid "Update your IMAP email account configuration"
#~ msgstr "Update your IMAP email account configuration"
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6404,6 +6585,8 @@ msgstr "Workflows"
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Workspace"
@ -6498,6 +6681,11 @@ msgstr "You are not allowed to create records for this object"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} dejará de estar asignado al siguiente rol:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Eliminación de cuenta"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Cuentas"
@ -978,6 +982,36 @@ msgstr "Al utilizar Twenty, aceptas la"
msgid "Calculate"
msgstr "Calcular"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Configurar una conexión SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configura y personaliza tus preferencias de calendario."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Configurar cómo se muestran las fechas en la aplicación"
msgid "Configure how we should display your events in your calendar"
msgstr "Configurar cómo debemos mostrar tus eventos en tu calendario"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Configura tus correos electrónicos y calendario."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Conectar una nueva cuenta a su espacio de trabajo"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Conectar con Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Conectar con Microsoft"
msgid "Connected accounts"
msgstr "Cuentas conectadas"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Fecha y hora"
msgid "Date format"
msgstr "Formato de fecha"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Editar campos"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "Correo electrónico"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "El correo electrónico no puede estar vacío"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Objeto vacío"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Exportar flujos de trabajo"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Ocultar grupos vacíos"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "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."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japonés"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Lanzar"
msgid "Layout"
msgstr "Diseño"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Fallo en la generación del archivo de metadatos"
msgid "Min"
msgstr "Mín"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nueva cuenta"
msgid "New Approved Access Domain"
msgstr "Nuevo Dominio de Acceso Aprobado"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nuevo Campo"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Página no encontrada"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Contraseña"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Los nombres en singular y plural deben ser diferentes"
msgid "Skip"
msgstr "Omitir"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Espacio de trabajo"
@ -6503,6 +6686,11 @@ msgstr "No tiene permiso para crear registros en este objeto"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} poistetaan seuraavasta roolista:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Tilin poistaminen"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Tilit"
@ -978,6 +982,36 @@ msgstr "Twenty:tä käyttäessäsi hyväksyt"
msgid "Calculate"
msgstr "Laske"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Määritä SSO-yhteys"
msgid "Configure and customize your calendar preferences."
msgstr "Määritä ja muokkaa kalenteriasetuksiasi."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Määritä, miten päivämäärät näytetään sovelluksessa"
msgid "Configure how we should display your events in your calendar"
msgstr "Määritä, miten tapahtumat näytetään kalenterissasi"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Määritä sähköpostisi ja kalenterin asetukset."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Yhdistä uusi tili työtilaasi"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Yhdistä Googleen"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Yhdistä Microsoftiin"
msgid "Connected accounts"
msgstr "Yhdistetyt tilit"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Päivämäärä ja kellonaika"
msgid "Date format"
msgstr "Päiväysmuoto"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Muokkaa kenttiä"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "S\\u00e4hk\\u00f6posti"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "Sähköpostiosoite ei voi olla tyhjä"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Tyhjä objekti"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Vie työnkulut"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Piilota tyhjät ryhmät"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Jos olet hukannut tämän avaimen, voit luoda sen uudelleen, mutta muista, että kaikki skriptit, jotka käyttävät tätä avainta, on päivitettävä. Kirjoita vahvistukseksi \"{confirmationValue}\"."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japani"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Käynnistä"
msgid "Layout"
msgstr "Ulkoasu"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Metatiedostotiedoston luonti epäonnistui"
msgid "Min"
msgstr "Pienin"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Uusi käyttäjätili"
msgid "New Approved Access Domain"
msgstr "Uusi Hyväksytty Pääsytunnusalue"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Uusi kenttä"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Sivua ei löydy"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Salasana"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Yksikön ja monikon nimien on oltava erilaisia"
msgid "Skip"
msgstr "Ohita"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Työtila"
@ -6503,6 +6686,11 @@ msgstr "Et voi luoda tietueita tälle objektille"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} sera retiré du rôle suivant :"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Suppression de compte"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Comptes"
@ -978,6 +982,36 @@ msgstr "En utilisant Twenty, vous acceptez les"
msgid "Calculate"
msgstr "Calculer"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Configurer une connexion SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configurer et personnaliser vos préférences de calendrier."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Configurer l'affichage des dates dans l'application"
msgid "Configure how we should display your events in your calendar"
msgstr "Configurer comment nous devrions afficher vos événements dans votre calendrier"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Configurer vos paramètres de courriel et de calendrier."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Connecter un nouveau compte à votre espace de travail"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Se connecter avec Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Se connecter avec Microsoft"
msgid "Connected accounts"
msgstr "Comptes connectés"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Date et heure"
msgid "Date format"
msgstr "Format de date"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Modifier les champs"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "Courriel"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "L'email ne peut pas être vide"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Objet vide"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Exporter les workflows"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Masquer les groupes vides"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "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."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japonais"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Lancer"
msgid "Layout"
msgstr "Disposition"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Échec de la génération du fichier des métadonnées"
msgid "Min"
msgstr "Min"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nouveau compte"
msgid "New Approved Access Domain"
msgstr "Nouveau domaine d'accès approuvé"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nouveau champ"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Page non trouvée"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Mot de passe"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Les noms au singulier et au pluriel doivent être différents"
msgid "Skip"
msgstr "Passer"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Espace de travail"
@ -6503,6 +6686,11 @@ msgstr "Vous n'êtes pas autorisé à créer des enregistrements pour cet objet"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} יוסר מהתפקיד הבא:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "מחיקת חשבון"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "חשבונות"
@ -978,6 +982,36 @@ msgstr "על ידי שימוש ב-Twenty, אתה מסכים ל"
msgid "Calculate"
msgstr "חישוב"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "הגדר חיבור SSO"
msgid "Configure and customize your calendar preferences."
msgstr "הגדר והתאם אישית את העדפות לוח השנה שלך."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "הגדר כיצד מוצגים תאריכים ברחבי האפליקצ
msgid "Configure how we should display your events in your calendar"
msgstr "קבע כיצד להציג את האירועים שלך בלוח השנה שלך"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "הגדר את ההגדרות של האימיילים ולוח השנה
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "חבר חשבון חדש למרחב העבודה שלך"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "התחבר עם Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "התחבר עם Microsoft"
msgid "Connected accounts"
msgstr "חשבונות מחוברים"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "תאריך ושעה"
msgid "Date format"
msgstr "פורמט תאריך"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "עריכת שדות"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "דוא\"ל"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "דוא\"ל לא יכול להיות ריק"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "אובייקט ריק"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "ייצוא תהליכי עבודה"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "הסתר קבוצות ריקות"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "אם איבדת את המפתח הזה, תוכל לחולל אותו מחדש, אך זכור שכל סקריפט המשתמש במפתח זה יצטרך להתעדכן. אנא הקלד \"{confirmationValue}\" לאישור."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "יפנית"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "הפעל"
msgid "Layout"
msgstr "פריסה"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "יצירת קובץ מטא נתונים נכשלה"
msgid "Min"
msgstr "מינ'"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "חשבון חדש"
msgid "New Approved Access Domain"
msgstr "דומיין גישה חדש מאושר"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "שדה חדש"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "הדף לא נמצא"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "סיסמה"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "יש לוודא ששמות היחיד והרבים יהיו שונים"
msgid "Skip"
msgstr "\\"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "סביבת עבודה"
@ -6503,6 +6686,11 @@ msgstr "אין לך הרשאה ליצור רשומות באובייקט זה"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} a következő szerepkörből lesz kivezetve:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24 óra ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Fiók törlése"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Fiókok"
@ -978,6 +982,36 @@ msgstr "A Twenty használatával elfogadja a"
msgid "Calculate"
msgstr "Számítás"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "SSO kapcsolat beállítása"
msgid "Configure and customize your calendar preferences."
msgstr "Állítsa be és szabja személyre a naptári beállításokat."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Állítsa be, hogy az alkalmazásban hogyan jelenjenek meg a dátumok"
msgid "Configure how we should display your events in your calendar"
msgstr "Konfigurálja, hogyan jelenítsük meg az eseményeket a naptárában"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Állítsa be az e-mail és naptár beállításokat."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Új fiók csatlakoztatása a munkaterülethez"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Csatlakozás Google-lel"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Csatlakozás Microsofttal"
msgid "Connected accounts"
msgstr "Csatlakoztatott fiókok"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Dátum és idő"
msgid "Date format"
msgstr "Dátumformátum"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Mezők szerkesztése"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "Email"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "Az email nem lehet üres"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Üres objektum"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Munkafolyamatok exportálása"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Üres csoportok elrejtése"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Ha elveszítette ezt a kulcsot, újrateremtheti, de tudnia kell, hogy minden ezzel a kulccsal használt parancsprogramot frissíteni kell. Kérjük, gépelje be a \"{confirmationValue}\" szót a megerősítéshez."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japán"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Indítás"
msgid "Layout"
msgstr "Elrendezés"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Metadat fájl generálása sikertelen"
msgid "Min"
msgstr "Min"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Új fiók"
msgid "New Approved Access Domain"
msgstr "Új jóváhagyott hozzáférési tartomány"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Új mező"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Az oldal nem található"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Jelszó"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Az egyes és többes számú neveknek különbözniük kell"
msgid "Skip"
msgstr "Átugrás"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Munkaterület"
@ -6503,6 +6686,11 @@ msgstr "Nincs jogosultság rekord létrehozására ehhez az objektumhoz"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} verrà rimosso dal seguente ruolo:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Eliminazione account"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Account"
@ -978,6 +982,36 @@ msgstr "Utilizzando Twenty, accetti la"
msgid "Calculate"
msgstr "Calcola"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Configura una connessione SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configura e personalizza le preferenze del calendario."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Configura la visualizzazione delle date nell'app"
msgid "Configure how we should display your events in your calendar"
msgstr "Configura come visualizzare i tuoi eventi nel calendario"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Configura le impostazioni di e-mail e calendario."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Collega un nuovo account al tuo workspace"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Connettiti con Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Connettiti con Microsoft"
msgid "Connected accounts"
msgstr "Account collegati"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Data e ora"
msgid "Date format"
msgstr "Formato della data"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Modifica campi"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "Email"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "L'email non può essere vuota"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Oggetto vuoto"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Esporta i workflow"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Nascondi gruppi vuoti"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Se hai perso questa chiave, puoi rigenerarla, ma sappi che qualsiasi script che utilizza questa chiave dovrà essere aggiornato. Digita \"{confirmationValue}\" per confermare."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Giapponese"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Avvia"
msgid "Layout"
msgstr "Disposizione"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Generazione del file di metadata fallita"
msgid "Min"
msgstr "Minimo"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nuovo account"
msgid "New Approved Access Domain"
msgstr "Nuovo dominio di accesso approvato"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nuovo Campo"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Pagina non trovata"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Password"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "I nomi singolari e plurali devono essere diversi"
msgid "Skip"
msgstr "Salta"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Workspace"
@ -6503,6 +6686,11 @@ msgstr "Non sei autorizzato a creare record per questo oggetto"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName}が次の役割から割り当て解除されます:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24時間 ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "アカウント削除"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "アカウント"
@ -978,6 +982,36 @@ msgstr "Twentyを利用することにより、以下の事項に同意したも
msgid "Calculate"
msgstr "計算"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "SSO接続を設定"
msgid "Configure and customize your calendar preferences."
msgstr "カレンダーの設定を行い、カスタマイズする。"
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "アプリ全体の日付の表示方法を設定"
msgid "Configure how we should display your events in your calendar"
msgstr "カレンダーでイベントをどのように表示するかを設定します"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "メールとカレンダーの設定を行う。"
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "新しいアカウントをワークスペースに接続"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Googleと接続"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Microsoftと接続"
msgid "Connected accounts"
msgstr "接続されたアカウント"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "日付と時間"
msgid "Date format"
msgstr "日付形式"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "フィールドを編集"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "メール"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "メールアドレスは空にできません"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "空のオブジェクト"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "ワークフローのエクスポート"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "空のグループを非表示"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "このキーを紛失した場合は再生成できますが、このキーを使用しているスクリプトは更新が必要です。確認のために\"{confirmationValue}\"と入力してください。"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "日本語"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "起動"
msgid "Layout"
msgstr "レイアウト"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "メタデータファイルの生成に失敗しました"
msgid "Min"
msgstr "最小"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "新しいアカウント"
msgid "New Approved Access Domain"
msgstr "新しい承認されたアクセスドメイン"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "\\\\u65b0\\\\u898f\\\\u30d5\\\\u30a3\\\\u30fc\\\\u30eb\\\\u30c9"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "ページが見つかりません"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "パスワード"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "単数形と複数形の名前は異なる必要があります"
msgid "Skip"
msgstr "スキップ"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "ワークスペース"
@ -6503,6 +6686,11 @@ msgstr "このオブジェクトでレコードを作成することは許可さ
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName}님이 다음 역할에서 재할당 해제됩니다:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24시간 ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "계정 삭제"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "계정"
@ -978,6 +982,36 @@ msgstr "Twenty를 사용함으로써 귀하는 다음에 동의합니다"
msgid "Calculate"
msgstr "계산"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "SSO 연결 구성"
msgid "Configure and customize your calendar preferences."
msgstr "캘린더 환경설정을 구성하고 사용자 지정하세요."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "앱 전체에 날짜가 표시되는 방식 구성"
msgid "Configure how we should display your events in your calendar"
msgstr "캘린더에 이벤트를 어떻게 표시할지 구성합니다"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "이메일 및 캘린더 설정 구성."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "새 계정을 워크스페이스에 연결"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Google과 연결"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Microsoft와 연결"
msgid "Connected accounts"
msgstr "연결된 계정"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "날짜 및 시간"
msgid "Date format"
msgstr "날짜 형식"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "필드 수정"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "이메일"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "이메일은 비워 둘 수 없습니다"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "빈 객체"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "워크플로 내보내기"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "빈 그룹 숨기기"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "이 키를 분실한 경우 다시 생성할 수 있지만, 이 키를 사용하는 모든 스크립트를 업데이트해야 합니다. 확인하려면 \"{confirmationValue}\"을 입력하세요."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "일본어"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "시작"
msgid "Layout"
msgstr "레이아웃"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "메타데이터 파일 생성 실패"
msgid "Min"
msgstr "최소"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "새 계정"
msgid "New Approved Access Domain"
msgstr "새 승인된 액세스 도메인"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "새 필드"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "페이지를 찾을 수 없음"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "비밀번호"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "단수와 복수 이름은 달라야 합니다"
msgid "Skip"
msgstr "건너뛰기"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "워크스페이스"
@ -6503,6 +6686,11 @@ msgstr "이 개체에 기록을 생성할 수 있는 권한이 없습니다"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} zal ontheven worden van de volgende rol:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24u ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Accountverwijdering"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Accounts"
@ -978,6 +982,36 @@ msgstr "Door gebruik te maken van Twenty, gaat u akkoord met de"
msgid "Calculate"
msgstr "Berekenen"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Configureer een SSO-verbinding"
msgid "Configure and customize your calendar preferences."
msgstr "Configureer en pas uw kalendervoorkeuren aan."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Stel in hoe datums in de app worden weergegeven"
msgid "Configure how we should display your events in your calendar"
msgstr "Configureer hoe we uw evenementen in uw agenda moeten weergeven"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Configureer uw e-mail- en kalenderinstellingen."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Verbind een nieuw account met uw werkplek"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Verbind met Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Verbind met Microsoft"
msgid "Connected accounts"
msgstr "Verbonden accounts"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Datum en tijd"
msgid "Date format"
msgstr "Datumformaat"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Velden bewerken"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-mail"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "E-mail mag niet leeg zijn"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Leeg object"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Workflows exporteren"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Lege groepen verbergen"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Als je deze sleutel bent verloren, kun je hem opnieuw genereren, maar weet dat elke script dat deze sleutel gebruikt moet worden bijgewerkt. Typ alstublieft \"{confirmationValue}\" om te bevestigen."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japans"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Starten"
msgid "Layout"
msgstr "Lay-out"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Metadatabestandsgeneratie mislukt"
msgid "Min"
msgstr "Min"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nieuwe account"
msgid "New Approved Access Domain"
msgstr "Nieuw goedgekeurd toegangsdomoen"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nieuw veld"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Pagina niet gevonden"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Wachtwoord"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Enkelvoudige en meervoudige namen moeten verschillend zijn"
msgid "Skip"
msgstr "Overslaan"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Werkruimte"
@ -6503,6 +6686,11 @@ msgstr "U mag geen records maken voor dit object"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} vil ikke lengre være tilordnet følgende rolle:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24t ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Kontosletting"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Kontoer"
@ -978,6 +982,36 @@ msgstr "Ved å bruke Twenty, samtykker du til"
msgid "Calculate"
msgstr "Beregn"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Konfigurer en SSO-forbindelse"
msgid "Configure and customize your calendar preferences."
msgstr "Konfigurer og tilpass dine kalenderinnstillinger."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Konfigurer hvordan datoer vises i hele appen"
msgid "Configure how we should display your events in your calendar"
msgstr "Konfigurer hvordan vi skal vise dine hendelser i kalenderen din"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Konfigurer dine e-post- og kalenderinnstillinger."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Koble en ny konto til arbeidsområdet ditt"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Koble til med Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Koble til med Microsoft"
msgid "Connected accounts"
msgstr "Tilkoblede kontoer"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Dato og tid"
msgid "Date format"
msgstr "Datoformat"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Rediger felt"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-post"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "E-post kan ikke være tom"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Tomt Objekt"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Eksporter arbeidsflyter"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Skjul tomme grupper"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Hvis du har mistet denne nøkkelen, kan du lage den på nytt, men vær oppmerksom på at ethvert skript som bruker denne nøkkelen må oppdateres. Vennligst skriv \"{confirmationValue}\" for å bekrefte."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japansk"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Start"
msgid "Layout"
msgstr "Oppsett"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Generering av metadatafil mislyktes"
msgid "Min"
msgstr "Min"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Ny konto"
msgid "New Approved Access Domain"
msgstr "Nytt godkjent tilgangsdomene"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nytt felt"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Siden ble ikke funnet"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Passord"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Entall- og flertallsnavn må være forskjellige"
msgid "Skip"
msgstr "Hopp over"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Arbeidsområde"
@ -6503,6 +6686,11 @@ msgstr "Du har ikke tillatelse til å opprette poster for dette objektet"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} zostanie odłączony od następującej roli:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Usuwanie konta"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Konta"
@ -978,6 +982,36 @@ msgstr "Używając Twenty, zgadzasz się na"
msgid "Calculate"
msgstr "Oblicz"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Skonfiguruj połączenie SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Skonfiguruj i dostosuj swoje preferencje kalendarza."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Skonfiguruj sposób wyświetlania dat w aplikacji"
msgid "Configure how we should display your events in your calendar"
msgstr "Skonfiguruj sposób wyświetlania twoich wydarzeń w kalendarzu"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Skonfiguruj swoje ustawienia e-mail i kalendarza."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Połącz nowe konto ze swoim miejscem pracy"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Połącz z Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Połącz z Microsoft"
msgid "Connected accounts"
msgstr "Połączone konta"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Data i czas"
msgid "Date format"
msgstr "Format daty"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Edytuj pola"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-mail"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "E-mail nie może być pusty"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Pusty obiekt"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Eksportuj przepływy pracy"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Ukryj puste grupy"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Jeśli zgubiłeś ten klucz, możesz go wygenerować ponownie, ale pamiętaj, że każdy skrypt używający tego klucza będzie wymagał aktualizacji. Proszę wpisz \"{confirmationValue}\", aby potwierdzić."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japoński"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Uruchom"
msgid "Layout"
msgstr "Układ"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Generowanie pliku metadanych nie powiodło się"
msgid "Min"
msgstr "Min"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nowe konto"
msgid "New Approved Access Domain"
msgstr "Nowa zatwierdzona domena dostępu"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nowe pole"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Nie znaleziono strony"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Hasło"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Nazwy liczby pojedynczej i mnogiej muszą się różnić"
msgid "Skip"
msgstr "Pomiń"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Miejsce pracy"
@ -6503,6 +6686,11 @@ msgstr "Nie masz uprawnień do tworzenia rekordów dla tego obiektu"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -137,7 +137,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr ""
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -215,8 +217,8 @@ msgstr ""
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -291,6 +293,8 @@ msgstr ""
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr ""
@ -970,6 +974,36 @@ msgstr ""
msgid "Calculate"
msgstr ""
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1268,6 +1302,11 @@ msgstr ""
msgid "Configure and customize your calendar preferences."
msgstr ""
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1278,6 +1317,16 @@ msgstr ""
msgid "Configure how we should display your events in your calendar"
msgstr ""
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1285,8 +1334,8 @@ msgstr ""
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1307,6 +1356,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr ""
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1314,8 +1368,8 @@ msgstr ""
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1327,6 +1381,21 @@ msgstr ""
msgid "Connected accounts"
msgstr ""
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1708,6 +1777,11 @@ msgstr ""
msgid "Date format"
msgstr ""
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2130,6 +2204,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2143,8 +2224,8 @@ msgstr ""
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2177,7 +2258,7 @@ msgid "Email"
msgstr ""
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2194,8 +2275,8 @@ msgstr ""
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2291,8 +2372,8 @@ msgstr ""
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2626,6 +2707,11 @@ msgstr ""
#~ msgid "Export Workflows"
#~ msgstr ""
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3016,6 +3102,11 @@ msgstr ""
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3083,33 +3174,48 @@ msgstr ""
msgid "If youve 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 ""
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3400,7 +3506,7 @@ msgid "Japanese"
msgstr ""
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3519,6 +3625,21 @@ msgstr ""
msgid "Layout"
msgstr ""
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3720,6 +3841,11 @@ msgstr ""
msgid "Min"
msgstr ""
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3896,6 +4022,13 @@ msgstr ""
msgid "New Approved Access Domain"
msgstr ""
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3904,8 +4037,8 @@ msgstr ""
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4383,7 +4516,6 @@ msgstr ""
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr ""
@ -5295,8 +5427,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5399,6 +5529,36 @@ msgstr ""
msgid "Skip"
msgstr ""
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5933,6 +6093,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6027,10 +6203,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6401,6 +6582,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr ""
@ -6495,6 +6678,11 @@ msgstr ""
#~ msgid "You are not allowed to create records in this object"
#~ msgstr ""
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} ser\\u00e1 desvinculado do seguinte cargo:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Exclusão de Conta"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Contas"
@ -978,6 +982,36 @@ msgstr "Ao usar o Twenty, você concorda com os"
msgid "Calculate"
msgstr "Calcular"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Configurar uma Conexão SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configure e personalize suas preferências de calendário."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Configurar como as datas são exibidas no aplicativo"
msgid "Configure how we should display your events in your calendar"
msgstr "Configure como devemos exibir seus eventos no seu calendário"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Configure suas configurações de e-mail e calendário."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Conecte uma nova conta ao seu espaço de trabalho"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Conectar com o Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Conectar com a Microsoft"
msgid "Connected accounts"
msgstr "Contas Conectadas"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Data e Hora"
msgid "Date format"
msgstr "Formato da Data"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Editar Campos"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-mail"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "Email não pode estar vazio"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Objeto Vazio"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Exportar workflows"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Ocultar grupos vazios"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "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."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japonês"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Lançar"
msgid "Layout"
msgstr "Disposição"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Falha na geração do arquivo de metadados"
msgid "Min"
msgstr "Mínimo"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nova conta"
msgid "New Approved Access Domain"
msgstr "Novo Domínio de Acesso Aprovado"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Novo campo"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Página não encontrada"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Senha"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Os nomes singulares e plurais devem ser diferentes"
msgid "Skip"
msgstr "Pular"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Workspace"
@ -6503,6 +6686,11 @@ msgstr "Você não está autorizado a criar registros para este objeto"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} ser\\u00e1 desvinculado do seguinte cargo:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Eliminação de conta"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Contas"
@ -978,6 +982,36 @@ msgstr "Ao utilizar o Twenty, concorda com a"
msgid "Calculate"
msgstr "Calcular"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Configurar uma ligação SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configure e personalize as suas preferências de calendário."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Configurar a forma como as datas são apresentadas na aplicação"
msgid "Configure how we should display your events in your calendar"
msgstr "Configure como devemos exibir seus eventos no seu calendário"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Configure as definições de e-mail e calendário."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Ligar uma nova conta ao seu espaço de trabalho"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Ligar ao Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Ligar à Microsoft"
msgid "Connected accounts"
msgstr "Contas ligadas"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Data e hora"
msgid "Date format"
msgstr "Formato da Data"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Editar Campos"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-mail"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "O e-mail não pode estar vazio"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Objeto vazio"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Exportar workflows"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Ocultar grupos vazios"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "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."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japonês"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Lançar"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Falha na geração do arquivo de metadados"
msgid "Min"
msgstr "Mínimo"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nova conta"
msgid "New Approved Access Domain"
msgstr "Novo Domínio de Acesso Aprovado"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Novo Campo"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Página não encontrada"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Palavra-passe"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Os nomes singulares e plurais devem ser diferentes"
msgid "Skip"
msgstr "Saltar"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Espaço de trabalho"
@ -6503,6 +6686,11 @@ msgstr "Você não tem permissão para criar registros para este objeto"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} va fi retras din următorul rol:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Ștergerea contului"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Conturi"
@ -978,6 +982,36 @@ msgstr "Folosind Twenty, sunteți de acord cu"
msgid "Calculate"
msgstr "Calculează"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Configurare conexiune SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Configurați și personalizați preferințele calendarului dumneavoastră."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Configurați modul în care sunt afișate datele în aplicație"
msgid "Configure how we should display your events in your calendar"
msgstr "Configurați modul în care ar trebui să afișăm evenimentele dvs. în calendarul dvs"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Configurați setările de e-mail și calendar."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Conectați un cont nou la spațiul dumneavoastră de lucru"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Conectați-vă cu Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Conectați-vă cu Microsoft"
msgid "Connected accounts"
msgstr "Conturi conectate"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Dată și oră"
msgid "Date format"
msgstr "Formatul datei"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Editați câmpurile"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-mail"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "Emailul nu poate fi gol"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Obiect Gol"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Exportă fluxuri de lucru"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Ascundeți grupurile goale"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Dacă ați pierdut această cheie, o puteți regenera, dar aveți în vedere că orice script folosind această cheie va necesita actualizare. Vă rugăm să tastați \"{confirmationValue}\" pentru confirmare."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japoneză"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Lansează"
msgid "Layout"
msgstr "Aspect"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Generarea fișierului de metadate a eșuat"
msgid "Min"
msgstr "Minim"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Cont nou"
msgid "New Approved Access Domain"
msgstr "Nou Domeniu de Acces Aprobat"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Câmp nou"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Pagina nu a fost găsită"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Parolă"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Numele pentru singular și plural trebuie să fie diferite"
msgid "Skip"
msgstr "Omite"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Spațiu de lucru"
@ -6503,6 +6686,11 @@ msgstr "Nu aveți permisiunea de a crea înregistrări pentru acest obiect"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} ће бити уклоњен из следеће улоге:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24 часа ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Брисање налога"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Налози"
@ -978,6 +982,36 @@ msgstr "Коришћењем Twenty, слажете се са"
msgid "Calculate"
msgstr "Израчунај"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Подесите везу SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Подесите и прилагодите своје преференције за календар."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Подесите како су датуми приказани широ
msgid "Configure how we should display your events in your calendar"
msgstr "Конфигуришите како треба да прикажемо ваше догађаје у календару"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Подесите своје подешавања е-поште и кал
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Повежите нови налог са својим простором за рад"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Повежите се са Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Повежите се са Microsoft"
msgid "Connected accounts"
msgstr "Повезани налози"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Датум и време"
msgid "Date format"
msgstr "Формат датума"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Измените поља"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "Имејл"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "Имејл не може бити празан"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Празан објекат"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Извези радне процесе"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Сакриј празне групе"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Ако сте изгубили овај кључ, можете га регенерисати, али будите свесни да ће свака скрипта која користи овај кључ морати бити ажурирана. Молимо укуцајте \"{confirmationValue}\" да потврдите."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Јапански"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Покрени"
msgid "Layout"
msgstr "Изглед"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Генерисање датотеке метаподатака није
msgid "Min"
msgstr "Минимум"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Нови налог"
msgid "New Approved Access Domain"
msgstr "Нови одобрени домен приступа"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Ново поље"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Страница није пронађена"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Лозинка"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Једнина и множина имена морају бити раз
msgid "Skip"
msgstr "Прескочи"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Радни простор"
@ -6503,6 +6686,11 @@ msgstr "Није дозвољено креирање записа за овај
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} kommer att tas bort från följande roll:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Kontoradering"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Konton"
@ -978,6 +982,36 @@ msgstr "Genom att använda Twenty godkänner du"
msgid "Calculate"
msgstr "Beräkna"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Konfigurera en SSO-anslutning"
msgid "Configure and customize your calendar preferences."
msgstr "Konfigurera och anpassa dina kalenderinställningar."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Konfigurera hur datum visas i hela appen"
msgid "Configure how we should display your events in your calendar"
msgstr "Konfigurera hur vi ska visa dina händelser i din kalender"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Konfigurera dina e-post- och kalenderinställningar."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Anslut ett nytt konto till din arbetsyta"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Anslut med Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Anslut med Microsoft"
msgid "Connected accounts"
msgstr "Anslutna konton"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Datum och tid"
msgid "Date format"
msgstr "Datumformat"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Redigera fält"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-post"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "E-post får inte vara tomt"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Tomt Objekt"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Exportera arbetsflöden"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Dölj tomma grupper"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Om du har tappat bort denna nyckel kan du återskapa den, men var medveten om att alla skript som använder denna nyckel kommer att behöva uppdateras. Vänligen skriv in \\\"{confirmationValue}\\\" för att bekräfta."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japanska"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Starta"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Generering av metadatafilen misslyckades"
msgid "Min"
msgstr "Minsta"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Nytt konto"
msgid "New Approved Access Domain"
msgstr "Ny godkänd åtkomstdomän"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Nytt fält"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Sidan kunde inte hittas"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Lösenord"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Singulära och plurala namnen måste vara olika"
msgid "Skip"
msgstr "Hoppa över"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Arbetsyta"
@ -6503,6 +6686,11 @@ msgstr "Du har inte tillåtelse att skapa poster i detta objekt"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} aşağıdaki rolden atılacak:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24 saat ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Hesap Silme"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Hesaplar"
@ -978,6 +982,36 @@ msgstr "Twenty'i kullanarak,"
msgid "Calculate"
msgstr "Hesapla"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "SSO bağlantısı yapılandırın"
msgid "Configure and customize your calendar preferences."
msgstr "Takvim tercihlerinizi yapılandırın ve özelleştirin."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Uygulama genelinde tarihlerin nasıl görüntüleneceğini yapılandır
msgid "Configure how we should display your events in your calendar"
msgstr "Takviminizdeki etkinliklerinizi nasıl görüntüleyeceğimizi yapılandırın"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "E-posta ve takvim ayarlarınızı yapılandırın."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Çalışma alanınıza yeni bir hesap bağlayın"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Google ile Bağlan"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Microsoft ile Bağlan"
msgid "Connected accounts"
msgstr "Bağlı hesaplar"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Tarih ve saat"
msgid "Date format"
msgstr "Tarih formatı"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Alanları Düzenle"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "E-posta"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "E-posta boş olamaz"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Boş Nesne"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "İş Akışlarını Dışa Aktar"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Boş grupları gizle"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Bu anahtarı kaybettiyseniz, yeniden oluşturabilirsiniz ancak bu anahtarı kullanan herhangi bir betiği güncellemeniz gerekeceğini unutmayın. Onaylamak için lütfen \"{confirmationValue}\" yazın."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Japonca"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Başlat"
msgid "Layout"
msgstr "Düzen"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Metadata dosyası oluşturulamadı"
msgid "Min"
msgstr "Dk"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Yeni hesap"
msgid "New Approved Access Domain"
msgstr "Yeni Onaylanmış Erişim Alanı"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Yeni Alan"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Sayfa Bulunamadı"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Parola"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Tekil ve çoğul isimler farklı olmalıdır"
msgid "Skip"
msgstr "Atla"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "İş Alanı"
@ -6503,6 +6686,11 @@ msgstr "Bu nesne için kayıt oluşturmaya izin verilmiyor"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} буде позбавлений наступної ролі:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24 год ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Видалення аккаунту"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Аккаунти"
@ -978,6 +982,36 @@ msgstr "Використовуючи Twenty, ви погоджуєтесь із"
msgid "Calculate"
msgstr "Розрахувати"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Сконфігуруйте з'єднання SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Налаштувати та настроїти уподобання вашого календаря."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Налаштуйте відображення дат у додатку"
msgid "Configure how we should display your events in your calendar"
msgstr "Налаштуйте, як ми повинні відображати ваші події у вашому календарі"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Налаштуйте налаштування електронної п
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Під'єднайте новий обліковий запис до вашого робочого простору"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Під'єднатися через Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Під'єднатися через Microsoft"
msgid "Connected accounts"
msgstr "Під'єднані облікові записи"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Дата та час"
msgid "Date format"
msgstr "Формат дати"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Редагувати поля"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "Електронна адреса"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "Електронна пошта не може бути порожньо
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Порожній об'єкт"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Експортувати робочі процеси"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Приховати порожні групи"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Якщо ви втратили цей ключ, ви можете його згенерувати знову, але майте на увазі, що будь-який сценарій, який використовує цей ключ, потрібно буде оновити. Будь ласка, введіть \" {confirmationValue}\" для підтвердження."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Японська"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Запустити"
msgid "Layout"
msgstr "Макет"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Не вдалося згенерувати файл метаданих"
msgid "Min"
msgstr "Мінімум"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Новий акаунт"
msgid "New Approved Access Domain"
msgstr "Новий затверджений домен доступу"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Нове поле"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Сторінку не знайдено"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Пароль"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Одниночні і множинні імена мають бути р
msgid "Skip"
msgstr "Пропустити"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Працевлаштування"
@ -6503,6 +6686,11 @@ msgstr "Ви не маєте права створювати записи для
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} sẽ không còn được phân công vào vai trò sau:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24h ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "Xóa Tài khoản"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "Tài khoản"
@ -978,6 +982,36 @@ msgstr "Bằng việc sử dụng Twenty, bạn đồng ý với"
msgid "Calculate"
msgstr "Tính toán"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "Cấu hình kết nối SSO"
msgid "Configure and customize your calendar preferences."
msgstr "Cấu hình và tùy chỉnh các tùy chọn lịch của bạn."
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "Cấu hình cách hiển thị ngày tháng trong ứng dụng"
msgid "Configure how we should display your events in your calendar"
msgstr "Định cấu hình cách chúng tôi nên hiển thị sự kiện của bạn trong lịch của bạn"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "Cấu hình cài đặt email và lịch của bạn."
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "Kết nối tài khoản mới với không gian làm việc của bạn"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "Kết nối với Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "Kết nối với Microsoft"
msgid "Connected accounts"
msgstr "Tài khoản đã kết nối"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "Ngày và giờ"
msgid "Date format"
msgstr "Định dạng ngày"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "Chỉnh sửa trường"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "Thư điện tử"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "Email không thể để trống"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "Đối tượng trống"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "Xuất các quy trình công việc"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "Ẩn nhóm trống"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "Nếu bạn đã mất khóa này, bạn có thể tạo lại, nhưng hãy nhớ rằng bất kỳ script nào sử dụng khóa này cũng cần được cập nhật. Vui lòng gõ \"{confirmationValue}\" để xác nhận."
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "Tiếng Nhật"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "Khởi chạy"
msgid "Layout"
msgstr "Bố cục"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "Tạo tập tin Metadata thất bại"
msgid "Min"
msgstr "Tối thiểu"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "Tài khoản mới"
msgid "New Approved Access Domain"
msgstr "Miền Truy Cập Đã Được Phê Duyệt Mới"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "Trường mới"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "Không tìm thấy trang"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "Mật khẩu"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "Tên số ít và số nhiều phải khác nhau"
msgid "Skip"
msgstr "Bỏ qua"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "Workspace"
@ -6503,6 +6686,11 @@ msgstr "Bạn không được phép tạo bản ghi cho đối tượng này"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName}将不再被分配以下角色:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24小时 ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "删除账户"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "账户"
@ -978,6 +982,36 @@ msgstr "使用 Twenty 即表示您同意"
msgid "Calculate"
msgstr "计算"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "配置 SSO 连接"
msgid "Configure and customize your calendar preferences."
msgstr "配置和自定义日历偏好。"
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "配置应用程序中的日期显示方式"
msgid "Configure how we should display your events in your calendar"
msgstr "配置我们应如何在您的日历中展示您的事件"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "配置电子邮件和日历设置。"
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "将新账户连接到工作区"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "连接 Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "连接 Microsoft"
msgid "Connected accounts"
msgstr "已连接账户"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "日期和时间"
msgid "Date format"
msgstr "日期格式"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "编辑字段"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "电子邮件"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "电子邮件不能为空"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "空对象"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "导出工作流程"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "隐藏空组"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "如果您丢失了此密钥,可以重新生成,但请注意,任何使用此密钥的脚本都需要更新。请键入\"{confirmationValue}\"确认。"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "日语"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "启动"
msgid "Layout"
msgstr "布局"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "元数据文件生成失败"
msgid "Min"
msgstr "最小"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "新账户"
msgid "New Approved Access Domain"
msgstr "新批准访问域"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "新字段"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "页面未找到"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "密码"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "单数和复数名称必须不同"
msgid "Skip"
msgstr "跳过"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "工作区"
@ -6503,6 +6686,11 @@ msgstr "您无权为此对象创建记录"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -145,7 +145,9 @@ msgid "{workspaceMemberName} will be unassigned from the following role:"
msgstr "{workspaceMemberName} 將不再被指派以下角色:"
#. js-lingui-id: CwstSL
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "••••••••"
msgstr ""
@ -223,8 +225,8 @@ msgstr "24小時 ({hour24Label})"
#. js-lingui-id: IbMa7Z
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "993"
msgstr ""
#~ msgid "993"
#~ msgstr ""
#. js-lingui-id: nMTB1f
#: src/pages/onboarding/CreateWorkspace.tsx
@ -299,6 +301,8 @@ msgstr "刪除帳戶"
#: src/pages/settings/accounts/SettingsAccountsEmails.tsx
#: src/pages/settings/accounts/SettingsAccountsCalendars.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
msgid "Accounts"
msgstr "帳戶"
@ -978,6 +982,36 @@ msgstr "使用 Twenty 即表示您同意"
msgid "Calculate"
msgstr "計算"
#. js-lingui-id: GixROH
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Configuration"
msgstr ""
#. js-lingui-id: Lw3Ou8
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Encryption"
msgstr ""
#. js-lingui-id: 4dwQbl
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Password"
msgstr ""
#. js-lingui-id: 5wnjvr
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Port"
msgstr ""
#. js-lingui-id: JUGLyW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "CalDAV Server"
msgstr ""
#. js-lingui-id: +x0fpb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "caldav.example.com"
msgstr ""
#. js-lingui-id: AjVXBS
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Calendar"
@ -1276,6 +1310,11 @@ msgstr "配置 SSO 連接"
msgid "Configure and customize your calendar preferences."
msgstr "配置和自定義日曆偏好。"
#. js-lingui-id: 6MDr1S
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure how dates are displayed across the app"
@ -1286,6 +1325,16 @@ msgstr "配置應用程序中日期的顯示方式"
msgid "Configure how we should display your events in your calendar"
msgstr "配置我們應如何在您的日曆中顯示您的事件"
#. js-lingui-id: jbuOOX
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure IMAP settings to receive and sync your emails."
msgstr ""
#. js-lingui-id: gk/8eh
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Configure SMTP settings to send emails from your account."
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@ -1293,8 +1342,8 @@ msgstr "配置您的電子郵件和日曆設置。"
#. js-lingui-id: W4D3v/
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Configure your IMAP email account"
msgstr ""
#~ msgid "Configure your IMAP email account"
#~ msgstr ""
#. js-lingui-id: 7VpPHA
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
@ -1315,6 +1364,11 @@ msgstr ""
msgid "Connect a new account to your workspace"
msgstr "將新帳戶連接到工作區"
#. js-lingui-id: ffVcxj
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect Email Account"
msgstr ""
#. js-lingui-id: Zgi9Fd
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with Google"
@ -1322,8 +1376,8 @@ msgstr "連接到 Google"
#. js-lingui-id: VZvZWq
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
msgid "Connect with IMAP"
msgstr ""
#~ msgid "Connect with IMAP"
#~ msgstr ""
#. js-lingui-id: IOfqM8
#: src/modules/settings/accounts/components/SettingsAccountsListEmptyStateCard.tsx
@ -1335,6 +1389,21 @@ msgstr "連接到 Microsoft"
msgid "Connected accounts"
msgstr "已連接帳戶"
#. js-lingui-id: W4Kgwq
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
msgid "Connection settings"
msgstr ""
#. js-lingui-id: f6bbrz
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully created"
msgstr ""
#. js-lingui-id: aJTn2g
#: src/modules/settings/accounts/hooks/useImapSmtpCaldavConnectionForm.ts
msgid "Connection successfully updated"
msgstr ""
#. js-lingui-id: Y2y0mC
#: src/modules/settings/accounts/components/SettingsAccountsMessageChannelDetails.tsx
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelDetails.tsx
@ -1716,6 +1785,11 @@ msgstr "日期和時間"
msgid "Date format"
msgstr "日期格式"
#. js-lingui-id: cpDASC
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Days between triggers"
msgstr ""
#. js-lingui-id: 5y3O+A
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
@ -2138,6 +2212,13 @@ msgstr ""
msgid "Edit CRM data structure and fields"
msgstr ""
#. js-lingui-id: AyPkS4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Edit Email Account"
msgstr ""
#. js-lingui-id: 9QCQIc
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownHiddenRecordGroupsContent.tsx
msgid "Edit field values"
@ -2151,8 +2232,8 @@ msgstr "編輯字段"
#. js-lingui-id: 8gm+y4
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Edit IMAP Connection"
msgstr ""
#~ msgid "Edit IMAP Connection"
#~ msgstr ""
#. js-lingui-id: h2KoTu
#: src/pages/settings/SettingsBilling.tsx
@ -2185,7 +2266,7 @@ msgid "Email"
msgstr "電子郵件"
#. js-lingui-id: hzKQCy
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Email Address"
msgstr ""
@ -2202,8 +2283,8 @@ msgstr "電子郵件不能為空"
#. js-lingui-id: Zb5c/r
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
msgid "Email Connections"
msgstr ""
#~ msgid "Email Connections"
#~ msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/ChooseYourPlan.tsx
@ -2299,8 +2380,8 @@ msgstr "空對象"
#. js-lingui-id: q1srUM
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Encryption"
msgstr ""
#~ msgid "Encryption"
#~ msgstr ""
#. js-lingui-id: T3juzf
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@ -2634,6 +2715,11 @@ msgstr "導出工作流程"
#~ msgid "Export Workflows"
#~ msgstr "Export Workflows"
#. js-lingui-id: 1JBTZV
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Expression"
msgstr ""
#. js-lingui-id: uE7S0L
#: src/modules/billing/components/SettingsBillingMonthlyCreditsSection.tsx
msgid "Extra Credits Used"
@ -3024,6 +3110,11 @@ msgstr "隱藏空組"
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: N0Yhtw
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Hours between triggers"
msgstr ""
#. js-lingui-id: B06Bgk
#: src/pages/onboarding/CreateProfile.tsx
msgid "How you'll be identified on the app."
@ -3091,33 +3182,48 @@ msgstr ""
msgid "If youve 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 "如果您丟失了此密鑰,可以重新生成,但請注意,任何使用此密鑰的腳本都需要更新。請鍵入\"{confirmationValue}\"確認。"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
msgstr ""
#. js-lingui-id: 3rtE4o
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "IMAP Connection Details"
msgstr ""
#~ msgid "IMAP Connection Details"
#~ msgstr ""
#. js-lingui-id: jXXECN
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully created"
msgstr ""
#~ msgid "IMAP connection successfully created"
#~ msgstr ""
#. js-lingui-id: Fz/wXI
#: src/modules/settings/accounts/hooks/useImapConnectionForm.ts
msgid "IMAP connection successfully updated"
#~ msgid "IMAP connection successfully updated"
#~ msgstr ""
#. js-lingui-id: N+Oh7x
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Encryption"
msgstr ""
#. js-lingui-id: Ubs0tf
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Password"
msgstr ""
#. js-lingui-id: TE8s2c
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Port"
msgstr ""
#. js-lingui-id: /RAwfY
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Server"
msgstr ""
#. js-lingui-id: +8jOVa
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "imap.example.com"
msgstr ""
@ -3408,7 +3514,7 @@ msgid "Japanese"
msgstr "日語"
#. js-lingui-id: wrLOeW
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "john.doe@example.com"
msgstr ""
@ -3527,6 +3633,21 @@ msgstr "啟動"
msgid "Layout"
msgstr "版面設計"
#. js-lingui-id: 8QyoLb
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need calendar sync."
msgstr ""
#. js-lingui-id: EY3IAD
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to import emails."
msgstr ""
#. js-lingui-id: O7a3Du
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Leave blank if you don't need to send emails."
msgstr ""
#. js-lingui-id: haJ2Hb
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
#~ msgid "Less than"
@ -3728,6 +3849,11 @@ msgstr "元數據文件生成失敗"
msgid "Min"
msgstr "最小"
#. js-lingui-id: APfhM/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minutes between triggers"
msgstr ""
#. js-lingui-id: 8g3Cgz
#: src/modules/settings/admin-panel/health-status/components/ConnectedAccountHealthStatus.tsx
msgid "Monitor the execution of your calendar events sync job"
@ -3904,6 +4030,13 @@ msgstr "新帳戶"
msgid "New Approved Access Domain"
msgstr "新增已批准的訪問域"
#. js-lingui-id: 7JRigF
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "New Email Account"
msgstr ""
#. js-lingui-id: 8YPqRx
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
msgid "New Field"
@ -3912,8 +4045,8 @@ msgstr "新字段"
#. js-lingui-id: GeB/fA
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
msgid "New IMAP Connection"
msgstr ""
#~ msgid "New IMAP Connection"
#~ msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@ -4391,7 +4524,6 @@ msgstr "頁面未找到"
#. js-lingui-id: 8ZsakT
#: src/modules/settings/security/components/SettingsSecurityAuthProvidersOptionsList.tsx
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Password"
msgstr "密碼"
@ -5303,8 +5435,6 @@ msgstr ""
#: src/modules/settings/roles/role-permissions/settings-permissions/components/SettingsRolePermissionsSettingsSection.tsx
#: src/modules/settings/roles/role/components/SettingsRole.tsx
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapConnection.tsx
#: src/modules/navigation/components/MainNavigationDrawerFixedItems.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Settings"
@ -5407,6 +5537,36 @@ msgstr "單數和複數名稱必須不同"
msgid "Skip"
msgstr "跳過"
#. js-lingui-id: w+rJId
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Configuration"
msgstr ""
#. js-lingui-id: 0sIQAM
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Encryption"
msgstr ""
#. js-lingui-id: UeDEV/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Password"
msgstr ""
#. js-lingui-id: 4waP7/
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Port"
msgstr ""
#. js-lingui-id: oKqFNn
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "SMTP Server"
msgstr ""
#. js-lingui-id: 4oakKm
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "smtp.example.com"
msgstr ""
#. js-lingui-id: f6Hub0
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/object-sort-dropdown/components/ObjectSortDropdownButton.tsx
@ -5941,6 +6101,22 @@ msgstr ""
msgid "Trial expired. Please update your billing details."
msgstr ""
#. js-lingui-id: EfDzVR
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at hour"
msgstr ""
#. js-lingui-id: gV4kml
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger at minute"
msgstr ""
#. js-lingui-id: jGYsS/
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Trigger interval"
msgstr ""
#. js-lingui-id: PiUt3N
#: src/modules/command-menu/hooks/useWorkflowCommandMenu.ts
#: src/modules/command-menu/hooks/__tests__/useWorkflowCommandMenu.test.tsx
@ -6035,10 +6211,15 @@ msgstr ""
msgid "Update"
msgstr ""
#. js-lingui-id: cAn7CC
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: Vmsh9w
#: src/modules/settings/accounts/components/SetttingsAccountsImapConnectionForm.tsx
msgid "Update your IMAP email account configuration"
msgstr ""
#~ msgid "Update your IMAP email account configuration"
#~ msgstr ""
#. js-lingui-id: +b7T3G
#: src/pages/settings/developers/webhooks/components/SettingsDevelopersWebhookDetail.tsx
@ -6409,6 +6590,8 @@ msgstr ""
#: src/modules/settings/roles/components/SettingsRolesContainer.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
#: src/modules/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection.tsx
#: src/modules/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection.tsx
#: src/modules/favorites/components/WorkspaceFavorites.tsx
msgid "Workspace"
msgstr "工作區"
@ -6503,6 +6686,11 @@ msgstr "您無權在此對象中創建記錄"
#~ msgid "You are not allowed to create records in this object"
#~ msgstr "You are not allowed to create records in this object"
#. js-lingui-id: OLE3Ky
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync)."
msgstr ""
#. js-lingui-id: TBApzn
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
#~ msgid "You do not have access to impersonate users."

View File

@ -64,19 +64,19 @@ const SettingsNewObject = lazy(() =>
})),
);
const SettingsNewImapConnection = lazy(() =>
const SettingsNewImapSmtpCaldavConnection = lazy(() =>
import(
'@/settings/accounts/components/SettingsAccountsNewImapConnection'
'@/settings/accounts/components/SettingsAccountsNewImapSmtpCaldavConnection'
).then((module) => ({
default: module.SettingsAccountsNewImapConnection,
default: module.SettingsAccountsNewImapSmtpCaldavConnection,
})),
);
const SettingsEditImapConnection = lazy(() =>
const SettingsEditImapSmtpCaldavConnection = lazy(() =>
import(
'@/settings/accounts/components/SettingsAccountsEditImapConnection'
'@/settings/accounts/components/SettingsAccountsEditImapSmtpCaldavConnection'
).then((module) => ({
default: module.SettingsAccountsEditImapConnection,
default: module.SettingsAccountsEditImapSmtpCaldavConnection,
})),
);
@ -375,12 +375,12 @@ export const SettingsRoutes = ({
element={<SettingsAccountsEmails />}
/>
<Route
path={SettingsPath.NewImapConnection}
element={<SettingsNewImapConnection />}
path={SettingsPath.NewImapSmtpCaldavConnection}
element={<SettingsNewImapSmtpCaldavConnection />}
/>
<Route
path={SettingsPath.EditImapConnection}
element={<SettingsEditImapConnection />}
path={SettingsPath.EditImapSmtpCaldavConnection}
element={<SettingsEditImapSmtpCaldavConnection />}
/>
<Route
element={

View File

@ -15,6 +15,7 @@ import { isDeveloperDefaultSignInPrefilledState } from '@/client-config/states/i
import { isEmailVerificationRequiredState } from '@/client-config/states/isEmailVerificationRequiredState';
import { isGoogleCalendarEnabledState } from '@/client-config/states/isGoogleCalendarEnabledState';
import { isGoogleMessagingEnabledState } from '@/client-config/states/isGoogleMessagingEnabledState';
import { isImapSmtpCaldavEnabledState } from '@/client-config/states/isImapSmtpCaldavEnabledState';
import { isMicrosoftCalendarEnabledState } from '@/client-config/states/isMicrosoftCalendarEnabledState';
import { isMicrosoftMessagingEnabledState } from '@/client-config/states/isMicrosoftMessagingEnabledState';
import { isMultiWorkspaceEnabledState } from '@/client-config/states/isMultiWorkspaceEnabledState';
@ -92,6 +93,10 @@ export const ClientConfigProviderEffect = () => {
calendarBookingPageIdState,
);
const setIsImapSmtpCaldavEnabled = useSetRecoilState(
isImapSmtpCaldavEnabledState,
);
const { data, loading, error, fetchClientConfig } = useClientConfig();
useEffect(() => {
@ -183,6 +188,7 @@ export const ClientConfigProviderEffect = () => {
}));
setCalendarBookingPageId(data?.clientConfig?.calendarBookingPageId ?? null);
setIsImapSmtpCaldavEnabled(data?.clientConfig?.isImapSmtpCaldavEnabled);
}, [
data,
loading,
@ -210,6 +216,7 @@ export const ClientConfigProviderEffect = () => {
setIsAttachmentPreviewEnabled,
setIsConfigVariablesInDbEnabled,
setCalendarBookingPageId,
setIsImapSmtpCaldavEnabled,
]);
return <></>;

View File

@ -0,0 +1,5 @@
import { createState } from 'twenty-ui/utilities';
export const isImapSmtpCaldavEnabledState = createState<boolean>({
key: 'isImapSmtpCaldavEnabled',
defaultValue: false,
});

View File

@ -30,7 +30,7 @@ export type ClientConfig = {
isMicrosoftCalendarEnabled: boolean;
isMicrosoftMessagingEnabled: boolean;
isMultiWorkspaceEnabled: boolean;
isIMAPMessagingEnabled: boolean;
isImapSmtpCaldavEnabled: boolean;
publicFeatureFlags: Array<PublicFeatureFlag>;
sentry: Sentry;
signInPrefilled: boolean;

View File

@ -117,5 +117,8 @@ export const useCommandMenuHotKeys = () => {
goBackFromCommandMenu,
setGlobalCommandMenuContext,
],
options: {
preventDefault: false,
},
});
};

View File

@ -5,7 +5,10 @@ import { useRecordTableContextOrThrow } from '@/object-record/record-table/conte
import { useLeaveTableFocus } from '@/object-record/record-table/hooks/internal/useLeaveTableFocus';
import { MODAL_BACKDROP_CLICK_OUTSIDE_ID } from '@/ui/layout/modal/constants/ModalBackdropClickOutsideId';
import { PAGE_ACTION_CONTAINER_CLICK_OUTSIDE_ID } from '@/ui/layout/page/constants/PageActionContainerClickOutsideId';
import { currentFocusedItemSelector } from '@/ui/utilities/focus/states/currentFocusedItemSelector';
import { FocusComponentType } from '@/ui/utilities/focus/types/FocusComponentType';
import { useListenClickOutside } from '@/ui/utilities/pointer-event/hooks/useListenClickOutside';
import { useRecoilValue } from 'recoil';
type RecordTableBodyFocusClickOutsideEffectProps = {
tableBodyRef: React.RefObject<HTMLDivElement>;
};
@ -17,6 +20,10 @@ export const RecordTableBodyFocusClickOutsideEffect = ({
const leaveTableFocus = useLeaveTableFocus(recordTableId);
const currentFocusedItem = useRecoilValue(currentFocusedItemSelector);
const componentType = currentFocusedItem?.componentInstance.componentType;
useListenClickOutside({
excludedClickOutsideIds: [
ACTION_MENU_DROPDOWN_CLICK_OUTSIDE_ID,
@ -27,6 +34,15 @@ export const RecordTableBodyFocusClickOutsideEffect = ({
listenerId: RECORD_TABLE_CLICK_OUTSIDE_LISTENER_ID,
refs: [tableBodyRef],
callback: () => {
if (
componentType !== FocusComponentType.PAGE &&
componentType !== FocusComponentType.RECORD_TABLE &&
componentType !== FocusComponentType.RECORD_TABLE_ROW &&
componentType !== FocusComponentType.RECORD_TABLE_CELL
) {
return;
}
leaveTableFocus();
},
});

View File

@ -79,6 +79,10 @@ export const useRecordTitleCell = () => {
prefix: containerType,
}),
},
globalHotkeysConfig: {
enableGlobalHotkeysConflictingWithKeyboard: false,
enableGlobalHotkeysWithModifiers: false,
},
});
const recordTitleCellId = getRecordFieldInputInstanceId({

View File

@ -4,21 +4,11 @@ import { SettingsPath } from '@/types/SettingsPath';
import { SettingsAccountsConnectedAccountsRowRightContainer } from '@/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer';
import { useLingui } from '@lingui/react/macro';
import {
IconComponent,
IconGoogle,
IconMail,
IconMicrosoft,
} from 'twenty-ui/display';
import { SettingsConnectedAccountIcon } from '@/settings/accounts/components/SettingsConnectedAccountIcon';
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
import { SettingsListCard } from '../../components/SettingsListCard';
const ProviderIcons: { [k: string]: IconComponent } = {
google: IconGoogle,
microsoft: IconMicrosoft,
imap: IconMail,
};
export const SettingsAccountsConnectedAccountsListCard = ({
accounts,
loading,
@ -38,7 +28,7 @@ export const SettingsAccountsConnectedAccountsListCard = ({
items={accounts}
getItemLabel={(account) => account.handle}
isLoading={loading}
RowIconFn={(row) => ProviderIcons[row.provider]}
RowIconFn={(row) => SettingsConnectedAccountIcon({ account: row })}
RowRightComponent={({ item: account }) => (
<SettingsAccountsConnectedAccountsRowRightContainer account={account} />
)}

View File

@ -0,0 +1,354 @@
import styled from '@emotion/styled';
import { useLingui } from '@lingui/react/macro';
import { Control, Controller } from 'react-hook-form';
import { Select } from '@/ui/input/components/Select';
import { TextInput } from '@/ui/input/components/TextInput';
import { ConnectionFormData } from '@/settings/accounts/hooks/useImapSmtpCaldavConnectionForm';
import { H2Title } from 'twenty-ui/display';
import { Section } from 'twenty-ui/layout';
import { MOBILE_VIEWPORT } from 'twenty-ui/theme';
const StyledFormContainer = styled.div`
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.spacing(6)};
`;
const StyledConnectionSection = styled.div`
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.spacing(2)};
`;
const StyledSectionHeader = styled.div`
margin-bottom: ${({ theme }) => theme.spacing(2)};
`;
const StyledSectionTitle = styled.h3`
color: ${({ theme }) => theme.font.color.primary};
font-size: ${({ theme }) => theme.font.size.md};
font-weight: ${({ theme }) => theme.font.weight.medium};
margin: 0;
margin-bottom: ${({ theme }) => theme.spacing(1)};
`;
const StyledSectionDescription = styled.p`
color: ${({ theme }) => theme.font.color.tertiary};
font-size: ${({ theme }) => theme.font.size.sm};
margin: 0;
`;
const StyledFieldRow = styled.div`
display: flex;
gap: ${({ theme }) => theme.spacing(3)};
@media (max-width: ${MOBILE_VIEWPORT}px) {
flex-direction: column;
}
`;
const StyledFieldGroup = styled.div`
flex: 1;
& > * {
width: 100%;
}
`;
type SettingsAccountsConnectionFormProps = {
control: Control<ConnectionFormData>;
isEditing: boolean;
};
export const SettingsAccountsConnectionForm = ({
control,
isEditing,
}: SettingsAccountsConnectionFormProps) => {
const { t } = useLingui();
const getTitle = () => {
return isEditing ? t`Edit Email Account` : t`New Email Account`;
};
const getDescription = () => {
if (isEditing) {
return t`Update your email account configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed.`;
}
return t`You can set up any combination of IMAP (receiving emails), SMTP (sending emails), and CalDAV (calendar sync).`;
};
const handlePortChange = (value: string) => Number(value);
return (
<Section>
<H2Title title={getTitle()} description={getDescription()} />
<StyledFormContainer>
<Controller
name="handle"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="email-address-connection-form"
label={t`Email Address`}
placeholder={t`john.doe@example.com`}
value={field.value}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
<StyledConnectionSection>
<StyledSectionHeader>
<StyledSectionTitle>{t`IMAP Configuration`}</StyledSectionTitle>
<StyledSectionDescription>
{t`Configure IMAP settings to receive and sync your emails.`}
<br />
{t`Leave blank if you don't need to import emails.`}
</StyledSectionDescription>
</StyledSectionHeader>
<Controller
name="IMAP.host"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="imap-host-connection-form"
label={t`IMAP Server`}
placeholder={t`imap.example.com`}
value={field.value || ''}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
<Controller
name="IMAP.password"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="imap-password-connection-form"
label={t`IMAP Password`}
placeholder={t`••••••••`}
type="password"
value={field.value || ''}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
<StyledFieldRow>
<StyledFieldGroup>
<Controller
name="IMAP.port"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="imap-port-connection-form"
label={t`IMAP Port`}
type="number"
placeholder="993"
value={field?.value ? field.value : 993}
onChange={(value) =>
field.onChange(handlePortChange(value))
}
error={fieldState.error?.message}
/>
)}
/>
</StyledFieldGroup>
<StyledFieldGroup>
<Controller
name="IMAP.secure"
control={control}
render={({ field }) => (
<Select
label={t`IMAP Encryption`}
options={[
{ label: 'SSL/TLS', value: true },
{ label: 'None', value: false },
]}
value={field.value}
onChange={field.onChange}
dropdownId="imap-secure-dropdown"
/>
)}
/>
</StyledFieldGroup>
</StyledFieldRow>
</StyledConnectionSection>
<StyledConnectionSection>
<StyledSectionHeader>
<StyledSectionTitle>{t`SMTP Configuration`}</StyledSectionTitle>
<StyledSectionDescription>
{t`Configure SMTP settings to send emails from your account.`}
<br />
{t`Leave blank if you don't need to send emails.`}
</StyledSectionDescription>
</StyledSectionHeader>
<Controller
name="SMTP.host"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="smtp-host-connection-form"
label={t`SMTP Server`}
placeholder={t`smtp.example.com`}
value={field.value || ''}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
<Controller
name="SMTP.password"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="smtp-password-connection-form"
label={t`SMTP Password`}
placeholder={t`••••••••`}
type="password"
value={field.value || ''}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
<StyledFieldRow>
<StyledFieldGroup>
<Controller
name="SMTP.port"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="smtp-port-connection-form"
label={t`SMTP Port`}
type="number"
placeholder="587"
value={field?.value ? field.value : 587}
onChange={(value) =>
field.onChange(handlePortChange(value))
}
error={fieldState.error?.message}
/>
)}
/>
</StyledFieldGroup>
<StyledFieldGroup>
<Controller
name="SMTP.secure"
control={control}
render={({ field }) => (
<Select
label={t`SMTP Encryption`}
options={[
{ label: 'SSL/TLS', value: true },
{ label: 'STARTTLS', value: false },
]}
value={field.value}
onChange={field.onChange}
dropdownId="smtp-secure-dropdown"
/>
)}
/>
</StyledFieldGroup>
</StyledFieldRow>
</StyledConnectionSection>
<StyledConnectionSection>
<StyledSectionHeader>
<StyledSectionTitle>{t`CalDAV Configuration`}</StyledSectionTitle>
<StyledSectionDescription>
{t`Configure CalDAV settings to sync your calendar events.`}
<br />
{t`Leave blank if you don't need calendar sync.`}
</StyledSectionDescription>
</StyledSectionHeader>
<Controller
name="CALDAV.host"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="caldav-host-connection-form"
label={t`CalDAV Server`}
placeholder={t`caldav.example.com`}
value={field.value || ''}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
<Controller
name="CALDAV.password"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="caldav-password-connection-form"
label={t`CalDAV Password`}
placeholder={t`••••••••`}
type="password"
value={field.value || ''}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
<StyledFieldRow>
<StyledFieldGroup>
<Controller
name="CALDAV.port"
control={control}
render={({ field, fieldState }) => (
<TextInput
instanceId="caldav-port-connection-form"
label={t`CalDAV Port`}
type="number"
placeholder="443"
value={field?.value ? field.value : 443}
onChange={(value) =>
field.onChange(handlePortChange(value))
}
error={fieldState.error?.message}
/>
)}
/>
</StyledFieldGroup>
<StyledFieldGroup>
<Controller
name="CALDAV.secure"
control={control}
render={({ field }) => (
<Select
label={t`CalDAV Encryption`}
options={[
{ label: 'SSL/TLS', value: true },
{ label: 'None', value: false },
]}
value={field.value}
onChange={field.onChange}
dropdownId="caldav-secure-dropdown"
/>
)}
/>
</StyledFieldGroup>
</StyledFieldRow>
</StyledConnectionSection>
</StyledFormContainer>
</Section>
);
};

View File

@ -1,93 +1,93 @@
import styled from '@emotion/styled';
import { useLingui } from '@lingui/react/macro';
import { FormProvider } from 'react-hook-form';
import { useParams } from 'react-router-dom';
import { SetttingsAccountsImapConnectionForm } from '@/settings/accounts/components/SetttingsAccountsImapConnectionForm';
import { useConnectedImapSmtpCaldavAccount } from '@/settings/accounts/hooks/useConnectedImapSmtpCaldavAccount';
import { useImapConnectionForm } from '@/settings/accounts/hooks/useImapConnectionForm';
import { SaveAndCancelButtons } from '@/settings/components/SaveAndCancelButtons/SaveAndCancelButtons';
import { SettingsPageContainer } from '@/settings/components/SettingsPageContainer';
import { SettingsPath } from '@/types/SettingsPath';
import { SubMenuTopBarContainer } from '@/ui/layout/page/components/SubMenuTopBarContainer';
import styled from '@emotion/styled';
import { useLingui } from '@lingui/react/macro';
import { Loader } from 'twenty-ui/feedback';
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
import { getSettingsPath } from '~/utils/navigation/getSettingsPath';
import { NotFound } from '~/pages/not-found/NotFound';
import { useImapSmtpCaldavConnectionForm } from '../hooks/useImapSmtpCaldavConnectionForm';
import { SettingsAccountsConnectionForm } from './SettingsAccountsConnectionForm';
const StyledLoadingContainer = styled.div`
align-items: center;
display: flex;
height: 200px;
justify-content: center;
width: 100%;
`;
export const SettingsAccountsEditImapConnection = () => {
export const SettingsAccountsEditImapSmtpCaldavConnection = () => {
const { t } = useLingui();
const navigate = useNavigateSettings();
const { connectedAccountId } = useParams<{ connectedAccountId: string }>();
const { connectedAccount, loading: accountLoading } =
useConnectedImapSmtpCaldavAccount(connectedAccountId);
const initialData = {
handle: connectedAccount?.handle || '',
host: connectedAccount?.connectionParameters?.IMAP?.host || '',
port: connectedAccount?.connectionParameters?.IMAP?.port || 993,
secure: connectedAccount?.connectionParameters?.IMAP?.secure ?? true,
password: connectedAccount?.connectionParameters?.IMAP?.password || '',
};
const { formMethods, handleSave, handleSubmit, canSave, isSubmitting } =
useImapConnectionForm({
initialData,
isEditing: true,
connectedAccountId,
});
const {
formMethods,
handleSave,
handleSubmit,
canSave,
isSubmitting,
loading,
connectedAccount,
} = useImapSmtpCaldavConnectionForm({
isEditing: true,
connectedAccountId,
});
const { control } = formMethods;
const renderLoadingState = () => (
<StyledLoadingContainer>
<Loader />
</StyledLoadingContainer>
);
if (loading && !connectedAccount) {
return (
<StyledLoadingContainer>
<Loader />
</StyledLoadingContainer>
);
}
if (!connectedAccount && !loading) {
return <NotFound />;
}
const renderForm = () => (
// eslint-disable-next-line react/jsx-props-no-spreading
<FormProvider {...formMethods}>
<SubMenuTopBarContainer
title={t`Edit IMAP Connection`}
title={t`Edit Email Account`}
links={[
{
children: t`Settings`,
children: t`Workspace`,
href: getSettingsPath(SettingsPath.Workspace),
},
{
children: t`Email Connections`,
children: t`Accounts`,
href: getSettingsPath(SettingsPath.Accounts),
},
{ children: t`Edit IMAP Connection` },
{ children: t`Edit Email Account` },
]}
actionButton={
<SaveAndCancelButtons
isSaveDisabled={!canSave}
isCancelDisabled={isSubmitting}
isLoading={loading}
onCancel={() => navigate(SettingsPath.Accounts)}
onSave={handleSubmit(handleSave)}
onSave={handleSubmit((data) => handleSave(data))}
/>
}
>
<SettingsPageContainer>
<SetttingsAccountsImapConnectionForm control={control} isEditing />
<SettingsAccountsConnectionForm control={control} isEditing />
</SettingsPageContainer>
</SubMenuTopBarContainer>
</FormProvider>
);
if (accountLoading === true) {
return renderLoadingState();
}
return renderForm();
};

View File

@ -9,7 +9,7 @@ import styled from '@emotion/styled';
import { useLingui } from '@lingui/react/macro';
import { useRecoilValue } from 'recoil';
import { ConnectedAccountProvider } from 'twenty-shared/types';
import { IconGoogle, IconMail, IconMicrosoft } from 'twenty-ui/display';
import { IconAt, IconGoogle, IconMicrosoft } from 'twenty-ui/display';
import { Button } from 'twenty-ui/input';
import { Card, CardContent, CardHeader } from 'twenty-ui/layout';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
@ -51,7 +51,9 @@ export const SettingsAccountsListEmptyStateCard = ({
isMicrosoftCalendarEnabledState,
);
const isImapEnabled = useIsFeatureEnabled(FeatureFlagKey.IS_IMAP_ENABLED);
const isImapSmtpCaldavFeatureFlagEnabled = useIsFeatureEnabled(
FeatureFlagKey.IS_IMAP_SMTP_CALDAV_ENABLED,
);
return (
<Card>
@ -75,12 +77,12 @@ export const SettingsAccountsListEmptyStateCard = ({
/>
)}
{isImapEnabled && (
{isImapSmtpCaldavFeatureFlagEnabled && (
<Button
Icon={IconMail}
title={t`Connect with IMAP`}
Icon={IconAt}
title={t`Connect Email Account`}
variant="secondary"
to={getSettingsPath(SettingsPath.NewImapConnection)}
to={getSettingsPath(SettingsPath.NewImapSmtpCaldavConnection)}
/>
)}
</StyledBody>

View File

@ -44,6 +44,9 @@ export const SettingsAccountsMessageChannelsContainer = () => {
connectedAccountId: {
in: accounts.map((account) => account.id),
},
isSyncEnabled: {
eq: true,
},
},
skip: !accounts.length,
});

View File

@ -1,21 +1,29 @@
import { useLingui } from '@lingui/react/macro';
import { FormProvider } from 'react-hook-form';
import { SetttingsAccountsImapConnectionForm } from '@/settings/accounts/components/SetttingsAccountsImapConnectionForm';
import { useImapConnectionForm } from '@/settings/accounts/hooks/useImapConnectionForm';
import { SaveAndCancelButtons } from '@/settings/components/SaveAndCancelButtons/SaveAndCancelButtons';
import { SettingsPageContainer } from '@/settings/components/SettingsPageContainer';
import { SettingsPath } from '@/types/SettingsPath';
import { SubMenuTopBarContainer } from '@/ui/layout/page/components/SubMenuTopBarContainer';
import { useLingui } from '@lingui/react/macro';
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
import { getSettingsPath } from '~/utils/navigation/getSettingsPath';
export const SettingsAccountsNewImapConnection = () => {
import { SettingsAccountsConnectionForm } from '@/settings/accounts/components/SettingsAccountsConnectionForm';
import { useImapSmtpCaldavConnectionForm } from '../hooks/useImapSmtpCaldavConnectionForm';
export const SettingsAccountsNewImapSmtpCaldavConnection = () => {
const { t } = useLingui();
const navigate = useNavigateSettings();
const { formMethods, handleSave, handleSubmit, canSave, isSubmitting } =
useImapConnectionForm();
const {
formMethods,
handleSave,
handleSubmit,
canSave,
isSubmitting,
loading,
} = useImapSmtpCaldavConnectionForm({});
const { control } = formMethods;
@ -23,32 +31,30 @@ export const SettingsAccountsNewImapConnection = () => {
// eslint-disable-next-line react/jsx-props-no-spreading
<FormProvider {...formMethods}>
<SubMenuTopBarContainer
title={t`New IMAP Connection`}
title={t`New Email Account`}
links={[
{
children: t`Settings`,
children: t`Workspace`,
href: getSettingsPath(SettingsPath.Workspace),
},
{
children: t`Email Connections`,
children: t`Accounts`,
href: getSettingsPath(SettingsPath.Accounts),
},
{ children: t`New IMAP Connection` },
{ children: t`New Email Account` },
]}
actionButton={
<SaveAndCancelButtons
isSaveDisabled={!canSave}
isCancelDisabled={isSubmitting}
isLoading={loading}
onCancel={() => navigate(SettingsPath.Accounts)}
onSave={handleSubmit(handleSave)}
onSave={handleSubmit((data) => handleSave(data))}
/>
}
>
<SettingsPageContainer>
<SetttingsAccountsImapConnectionForm
control={control}
isEditing={false}
/>
<SettingsAccountsConnectionForm control={control} isEditing={false} />
</SettingsPageContainer>
</SubMenuTopBarContainer>
</FormProvider>

View File

@ -10,11 +10,13 @@ import { useCloseDropdown } from '@/ui/layout/dropdown/hooks/useCloseDropdown';
import { ConfirmationModal } from '@/ui/layout/modal/components/ConfirmationModal';
import { useModal } from '@/ui/layout/modal/hooks/useModal';
import { Trans, useLingui } from '@lingui/react/macro';
import { ConnectedAccountProvider } from 'twenty-shared/types';
import {
IconCalendarEvent,
IconDotsVertical,
IconMail,
IconRefresh,
IconSettings,
IconTrash,
} from 'twenty-ui/display';
import { LightIconButton } from 'twenty-ui/input';
@ -57,6 +59,19 @@ export const SettingsAccountsRowDropdownMenu = ({
dropdownComponents={
<DropdownContent>
<DropdownMenuItemsContainer>
{account.provider ===
ConnectedAccountProvider.IMAP_SMTP_CALDAV && (
<MenuItem
text={t`Connection settings`}
LeftIcon={IconSettings}
onClick={() => {
navigate(SettingsPath.EditImapSmtpCaldavConnection, {
connectedAccountId: account.id,
});
closeDropdown(dropdownId);
}}
/>
)}
<MenuItem
LeftIcon={IconMail}
text={t`Emails settings`}

View File

@ -0,0 +1,83 @@
import { ConnectedAccount } from '@/accounts/types/ConnectedAccount';
import { useTheme } from '@emotion/react';
import { ConnectedAccountProvider } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import {
IconAt,
IconCalendarEvent,
IconComponent,
IconComponentProps,
IconGoogle,
IconMail,
IconMicrosoft,
IconSend,
} from 'twenty-ui/display';
const ImapSmtpCaldavIcon = (
props: IconComponentProps & { account: ConnectedAccount },
) => {
const theme = useTheme();
const { account } = props;
const hasImap = isDefined(account.connectionParameters?.IMAP);
const hasSmtp = isDefined(account.connectionParameters?.SMTP);
const hasCaldav = isDefined(account.connectionParameters?.CALDAV);
let IconToShow: IconComponent;
if (hasImap && hasSmtp && hasCaldav) {
IconToShow = IconAt;
} else if (hasImap && hasCaldav) {
IconToShow = IconAt;
} else if (hasImap && hasSmtp) {
IconToShow = IconMail;
} else if (hasImap) {
IconToShow = IconMail;
} else if (hasSmtp) {
IconToShow = IconSend;
} else if (hasCaldav) {
IconToShow = IconCalendarEvent;
} else {
IconToShow = IconMail;
}
return (
<IconToShow
className={props.className}
style={props.style}
size={props.size}
stroke={props.stroke}
color={props.color || theme.font.color.primary}
/>
);
};
const getIconForProvider = (account: ConnectedAccount): IconComponent => {
switch (account.provider) {
case ConnectedAccountProvider.IMAP_SMTP_CALDAV:
return (props) => (
<ImapSmtpCaldavIcon
account={account}
className={props.className}
style={props.style}
size={props.size}
stroke={props.stroke}
color={props.color}
/>
);
case ConnectedAccountProvider.GOOGLE:
return IconGoogle;
case ConnectedAccountProvider.MICROSOFT:
return IconMicrosoft;
default:
return IconMail;
}
};
export const SettingsConnectedAccountIcon = ({
account,
}: {
account: ConnectedAccount;
}): IconComponent => {
return getIconForProvider(account);
};

View File

@ -1,123 +0,0 @@
import { Control, Controller } from 'react-hook-form';
import { Select } from '@/ui/input/components/Select';
import { TextInput } from '@/ui/input/components/TextInput';
import styled from '@emotion/styled';
import { useLingui } from '@lingui/react/macro';
import { H2Title } from 'twenty-ui/display';
import { Section } from 'twenty-ui/layout';
import { ConnectionParameters } from '~/generated/graphql';
const StyledFormContainer = styled.form`
display: flex;
flex-direction: column;
gap: ${({ theme }) => theme.spacing(4)};
`;
type SetttingsAccountsImapConnectionFormProps = {
control: Control<ConnectionParameters & { handle: string }>;
isEditing: boolean;
defaultValues?: Partial<ConnectionParameters & { handle: string }>;
};
export const SetttingsAccountsImapConnectionForm = ({
control,
isEditing,
defaultValues,
}: SetttingsAccountsImapConnectionFormProps) => {
const { t } = useLingui();
return (
<Section>
<H2Title
title={t`IMAP Connection Details`}
description={
isEditing
? t`Update your IMAP email account configuration`
: t`Configure your IMAP email account`
}
/>
<StyledFormContainer>
<Controller
name="handle"
control={control}
defaultValue={defaultValues?.handle}
render={({ field, fieldState }) => (
<TextInput
instanceId="email-address-imap-connection-form"
label={t`Email Address`}
placeholder={t`john.doe@example.com`}
value={field.value}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
<Controller
name="host"
control={control}
defaultValue={defaultValues?.host}
render={({ field, fieldState }) => (
<TextInput
instanceId="host-imap-connection-form"
label={t`IMAP Server`}
placeholder={t`imap.example.com`}
value={field.value}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
<Controller
name="port"
control={control}
defaultValue={defaultValues?.port ?? 993}
render={({ field, fieldState }) => (
<TextInput
instanceId="port-imap-connection-form"
label={t`IMAP Port`}
type="number"
placeholder={t`993`}
value={field.value.toString()}
onChange={(value) => field.onChange(Number(value))}
error={fieldState.error?.message}
/>
)}
/>
<Controller
name="secure"
control={control}
defaultValue={defaultValues?.secure}
render={({ field }) => (
<Select
label={t`Encryption`}
options={[
{ label: 'SSL/TLS', value: true },
{ label: 'None', value: false },
]}
value={field.value}
onChange={field.onChange}
dropdownId="secure-dropdown"
/>
)}
/>
<Controller
name="password"
control={control}
defaultValue={defaultValues?.password}
render={({ field, fieldState }) => (
<TextInput
instanceId="password-imap-connection-form"
label={t`Password`}
placeholder={t`••••••••`}
type="password"
value={field.value}
onChange={field.onChange}
error={fieldState.error?.message}
/>
)}
/>
</StyledFormContainer>
</Section>
);
};

View File

@ -0,0 +1 @@
export const ACCOUNT_PROTOCOLS = ['IMAP', 'SMTP', 'CALDAV'] as const;

View File

@ -12,21 +12,18 @@ export const GET_CONNECTED_IMAP_SMTP_CALDAV_ACCOUNT = gql`
host
port
secure
username
password
}
SMTP {
host
port
secure
username
password
}
CALDAV {
host
port
secure
username
password
}
}

View File

@ -0,0 +1,238 @@
import { act, renderHook } from '@testing-library/react';
import { ReactNode } from 'react';
import { RecoilRoot } from 'recoil';
import { SettingsPath } from '@/types/SettingsPath';
import { ConnectedAccountProvider } from 'twenty-shared/types';
import {
CalendarChannelVisibility,
MessageChannelVisibility,
} from '~/generated-metadata/graphql';
import { useTriggerProviderReconnect } from '../useTriggerProviderReconnect';
const mockTriggerApisOAuth = jest.fn();
const mockNavigate = jest.fn();
jest.mock('@/settings/accounts/hooks/useTriggerApiOAuth', () => ({
useTriggerApisOAuth: jest.fn().mockImplementation(() => ({
triggerApisOAuth: mockTriggerApisOAuth,
})),
}));
jest.mock('~/hooks/useNavigateSettings', () => ({
useNavigateSettings: jest.fn().mockImplementation(() => mockNavigate),
}));
const Wrapper = ({ children }: { children: ReactNode }) => (
<RecoilRoot>{children}</RecoilRoot>
);
describe('useTriggerProviderReconnect', () => {
beforeEach(() => {
jest.clearAllMocks();
});
describe('IMAP_SMTP_CALDAV provider', () => {
it('should navigate to new connection when no accountId is provided', async () => {
const { result } = renderHook(() => useTriggerProviderReconnect(), {
wrapper: Wrapper,
});
await act(async () => {
await result.current.triggerProviderReconnect(
ConnectedAccountProvider.IMAP_SMTP_CALDAV,
);
});
expect(mockNavigate).toHaveBeenCalledWith(
SettingsPath.NewImapSmtpCaldavConnection,
);
expect(mockTriggerApisOAuth).not.toHaveBeenCalled();
});
it('should navigate to edit connection when accountId is provided', async () => {
const { result } = renderHook(() => useTriggerProviderReconnect(), {
wrapper: Wrapper,
});
const accountId = 'test-account-id-123';
await act(async () => {
await result.current.triggerProviderReconnect(
ConnectedAccountProvider.IMAP_SMTP_CALDAV,
accountId,
);
});
expect(mockNavigate).toHaveBeenCalledWith(
SettingsPath.EditImapSmtpCaldavConnection,
{
connectedAccountId: accountId,
},
);
expect(mockTriggerApisOAuth).not.toHaveBeenCalled();
});
it('should ignore options parameter for IMAP_SMTP_CALDAV provider', async () => {
const { result } = renderHook(() => useTriggerProviderReconnect(), {
wrapper: Wrapper,
});
const accountId = 'test-account-id-123';
const options = {
redirectLocation: '/some-path',
calendarVisibility: CalendarChannelVisibility.SHARE_EVERYTHING,
};
await act(async () => {
await result.current.triggerProviderReconnect(
ConnectedAccountProvider.IMAP_SMTP_CALDAV,
accountId,
options,
);
});
expect(mockNavigate).toHaveBeenCalledWith(
SettingsPath.EditImapSmtpCaldavConnection,
{
connectedAccountId: accountId,
},
);
expect(mockTriggerApisOAuth).not.toHaveBeenCalled();
});
});
describe('OAuth providers', () => {
it('should trigger OAuth for Google provider without options', async () => {
const { result } = renderHook(() => useTriggerProviderReconnect(), {
wrapper: Wrapper,
});
await act(async () => {
await result.current.triggerProviderReconnect(
ConnectedAccountProvider.GOOGLE,
);
});
expect(mockTriggerApisOAuth).toHaveBeenCalledWith(
ConnectedAccountProvider.GOOGLE,
undefined,
);
expect(mockNavigate).not.toHaveBeenCalled();
});
it('should trigger OAuth for Microsoft provider without options', async () => {
const { result } = renderHook(() => useTriggerProviderReconnect(), {
wrapper: Wrapper,
});
await act(async () => {
await result.current.triggerProviderReconnect(
ConnectedAccountProvider.MICROSOFT,
);
});
expect(mockTriggerApisOAuth).toHaveBeenCalledWith(
ConnectedAccountProvider.MICROSOFT,
undefined,
);
expect(mockNavigate).not.toHaveBeenCalled();
});
it('should trigger OAuth for Google provider with options', async () => {
const { result } = renderHook(() => useTriggerProviderReconnect(), {
wrapper: Wrapper,
});
const options = {
redirectLocation: '/custom-redirect',
calendarVisibility: CalendarChannelVisibility.METADATA,
messageVisibility: MessageChannelVisibility.SUBJECT,
loginHint: 'user@example.com',
};
await act(async () => {
await result.current.triggerProviderReconnect(
ConnectedAccountProvider.GOOGLE,
undefined,
options,
);
});
expect(mockTriggerApisOAuth).toHaveBeenCalledWith(
ConnectedAccountProvider.GOOGLE,
options,
);
expect(mockNavigate).not.toHaveBeenCalled();
});
it('should trigger OAuth for Microsoft provider with options', async () => {
const { result } = renderHook(() => useTriggerProviderReconnect(), {
wrapper: Wrapper,
});
const options = {
redirectLocation: '/another-redirect',
calendarVisibility: CalendarChannelVisibility.SHARE_EVERYTHING,
messageVisibility: MessageChannelVisibility.SHARE_EVERYTHING,
};
await act(async () => {
await result.current.triggerProviderReconnect(
ConnectedAccountProvider.MICROSOFT,
'some-account-id',
options,
);
});
expect(mockTriggerApisOAuth).toHaveBeenCalledWith(
ConnectedAccountProvider.MICROSOFT,
options,
);
expect(mockNavigate).not.toHaveBeenCalled();
});
it('should ignore accountId parameter for OAuth providers', async () => {
const { result } = renderHook(() => useTriggerProviderReconnect(), {
wrapper: Wrapper,
});
await act(async () => {
await result.current.triggerProviderReconnect(
ConnectedAccountProvider.GOOGLE,
'ignored-account-id',
);
});
expect(mockTriggerApisOAuth).toHaveBeenCalledWith(
ConnectedAccountProvider.GOOGLE,
undefined,
);
expect(mockNavigate).not.toHaveBeenCalled();
});
});
describe('error handling', () => {
it('should handle triggerApisOAuth errors gracefully', async () => {
const { result } = renderHook(() => useTriggerProviderReconnect(), {
wrapper: Wrapper,
});
const error = new Error('OAuth failed');
mockTriggerApisOAuth.mockRejectedValue(error);
await expect(async () => {
await act(async () => {
await result.current.triggerProviderReconnect(
ConnectedAccountProvider.GOOGLE,
);
});
}).rejects.toThrow('OAuth failed');
expect(mockTriggerApisOAuth).toHaveBeenCalledWith(
ConnectedAccountProvider.GOOGLE,
undefined,
);
});
});
});

View File

@ -1,11 +1,21 @@
import { useGetConnectedImapSmtpCaldavAccountQuery } from '~/generated-metadata/graphql';
import {
type GetConnectedImapSmtpCaldavAccountQuery,
useGetConnectedImapSmtpCaldavAccountQuery,
} from '~/generated-metadata/graphql';
export type ConnectedImapSmtpCaldavAccount =
GetConnectedImapSmtpCaldavAccountQuery['getConnectedImapSmtpCaldavAccount'];
export const useConnectedImapSmtpCaldavAccount = (
connectedAccountId: string | undefined,
onCompleted?: (data: ConnectedImapSmtpCaldavAccount) => void,
) => {
const { data, loading, error } = useGetConnectedImapSmtpCaldavAccountQuery({
variables: { id: connectedAccountId ?? '' },
skip: !connectedAccountId,
onCompleted: (data) => {
onCompleted?.(data.getConnectedImapSmtpCaldavAccount);
},
});
return {

View File

@ -1,133 +0,0 @@
import { zodResolver } from '@hookform/resolvers/zod';
import { useForm } from 'react-hook-form';
import { useRecoilValue } from 'recoil';
import { z } from 'zod';
import { SettingsPath } from '@/types/SettingsPath';
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
import { ApolloError } from '@apollo/client';
import { useLingui } from '@lingui/react/macro';
import {
ConnectionParameters,
useSaveImapSmtpCaldavMutation,
} from '~/generated-metadata/graphql';
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
import { currentWorkspaceMemberState } from '~/modules/auth/states/currentWorkspaceMemberState';
import { currentWorkspaceState } from '~/modules/auth/states/currentWorkspaceState';
const imapConnectionFormSchema = z.object({
handle: z.string().email('Invalid email address'),
host: z.string().min(1, 'IMAP server is required'),
port: z.number().int().positive('Port must be a positive number'),
secure: z.boolean(),
password: z.string().min(1, 'Password is required'),
});
type ImapConnectionFormValues = z.infer<typeof imapConnectionFormSchema>;
type UseImapConnectionFormProps = {
initialData?: ImapConnectionFormValues;
isEditing?: boolean;
connectedAccountId?: string;
};
export const useImapConnectionForm = ({
initialData,
isEditing = false,
connectedAccountId,
}: UseImapConnectionFormProps = {}) => {
const { t } = useLingui();
const navigate = useNavigateSettings();
const { enqueueErrorSnackBar, enqueueSuccessSnackBar } = useSnackBar();
const currentWorkspace = useRecoilValue(currentWorkspaceState);
const currentWorkspaceMember = useRecoilValue(currentWorkspaceMemberState);
const [saveImapConnection, { loading: saveLoading }] =
useSaveImapSmtpCaldavMutation();
const resolver = zodResolver(imapConnectionFormSchema);
const defaultValues = {
handle: initialData?.handle || '',
host: initialData?.host || '',
port: initialData?.port || 993,
secure: initialData?.secure ?? true,
password: initialData?.password || '',
};
const formMethods = useForm<ConnectionParameters & { handle: string }>({
mode: 'onSubmit',
resolver,
defaultValues,
});
const { handleSubmit, formState } = formMethods;
const { isValid, isSubmitting } = formState;
const canSave = isValid && !isSubmitting;
const loading = saveLoading;
const handleSave = async (
formValues: ConnectionParameters & { handle: string },
) => {
if (!currentWorkspace?.id) {
enqueueErrorSnackBar({});
return;
}
if (!currentWorkspaceMember?.id) {
enqueueErrorSnackBar({});
return;
}
try {
const variables = {
...(isEditing && connectedAccountId ? { id: connectedAccountId } : {}),
accountOwnerId: currentWorkspaceMember.id,
handle: formValues.handle,
host: formValues.host,
port: formValues.port,
secure: formValues.secure,
password: formValues.password,
};
await saveImapConnection({
variables: {
accountOwnerId: variables.accountOwnerId,
handle: variables.handle,
accountType: {
type: 'IMAP',
},
connectionParameters: {
host: variables.host,
port: variables.port,
secure: variables.secure,
password: variables.password,
username: variables.handle,
},
...(variables.id ? { id: variables.id } : {}),
},
});
enqueueSuccessSnackBar({
message: connectedAccountId
? t`IMAP connection successfully updated`
: t`IMAP connection successfully created`,
});
navigate(SettingsPath.Accounts);
} catch (error) {
enqueueErrorSnackBar({
apolloError: error instanceof ApolloError ? error : undefined,
});
}
};
return {
formMethods,
handleSave,
handleSubmit,
canSave,
isSubmitting,
loading,
};
};

View File

@ -0,0 +1,184 @@
import { zodResolver } from '@hookform/resolvers/zod';
import { useCallback, useMemo } from 'react';
import { useForm } from 'react-hook-form';
import { useRecoilValue } from 'recoil';
import { currentWorkspaceMemberState } from '@/auth/states/currentWorkspaceMemberState';
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
import { SettingsPath } from '@/types/SettingsPath';
import { t } from '@lingui/core/macro';
import {
ConnectionParameters,
useSaveImapSmtpCaldavMutation,
} from '~/generated-metadata/graphql';
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
import { ImapSmtpCaldavAccount } from '@/accounts/types/ImapSmtpCaldavAccount';
import { ACCOUNT_PROTOCOLS } from '@/settings/accounts/constants/AccountProtocols';
import {
connectionImapSmtpCalDav,
isProtocolConfigured,
} from '@/settings/accounts/validation-schemas/connectionImapSmtpCalDav';
import { isDefined } from 'twenty-shared/utils';
import {
ConnectedImapSmtpCaldavAccount,
useConnectedImapSmtpCaldavAccount,
} from './useConnectedImapSmtpCaldavAccount';
type UseConnectionFormProps = {
isEditing?: boolean;
connectedAccountId?: string;
};
export type ConnectionFormData = {
handle: string;
} & ImapSmtpCaldavAccount;
export const useImapSmtpCaldavConnectionForm = ({
isEditing = false,
connectedAccountId,
}: UseConnectionFormProps = {}) => {
const navigate = useNavigateSettings();
const currentWorkspaceMember = useRecoilValue(currentWorkspaceMemberState);
const formMethods = useForm<ConnectionFormData>({
mode: 'onSubmit',
resolver: zodResolver(connectionImapSmtpCalDav),
defaultValues: {
handle: '',
IMAP: { host: '', port: 993, password: '', secure: true },
SMTP: { host: '', port: 587, password: '', secure: true },
CALDAV: { host: '', port: 443, password: '', secure: true },
},
});
const { handleSubmit, formState, watch, reset } = formMethods;
const { enqueueErrorSnackBar, enqueueSuccessSnackBar } = useSnackBar();
const { isSubmitting } = formState;
const { connectedAccount, loading: accountLoading } =
useConnectedImapSmtpCaldavAccount(
isEditing ? connectedAccountId : undefined,
useCallback(
(account: ConnectedImapSmtpCaldavAccount | null) => {
if (isDefined(account)) {
reset({
handle: account.handle || '',
IMAP: account.connectionParameters?.IMAP || undefined,
SMTP: account.connectionParameters?.SMTP || undefined,
CALDAV: account.connectionParameters?.CALDAV || undefined,
});
}
},
[reset],
),
);
const [saveConnection, { loading: saveLoading }] =
useSaveImapSmtpCaldavMutation();
const watchedValues = watch();
const getConfiguredProtocols = useCallback(
(
values: ConnectionFormData = watchedValues,
): (keyof ImapSmtpCaldavAccount)[] => {
return ACCOUNT_PROTOCOLS.filter((protocol) => {
const protocolConfig = values[protocol];
return (
protocolConfig &&
isProtocolConfigured(protocolConfig as ConnectionParameters)
);
});
},
[watchedValues],
);
const isValid = useMemo(() => {
return (
Boolean(watchedValues.handle?.trim()) &&
getConfiguredProtocols().length > 0
);
}, [getConfiguredProtocols, watchedValues.handle]);
const saveIndividualConnection = useCallback(
async (
protocol: keyof ImapSmtpCaldavAccount,
formValues: ConnectionFormData,
): Promise<void> => {
if (!currentWorkspaceMember?.id) {
throw new Error('Workspace member ID is missing');
}
const protocolConfig = formValues[protocol];
if (!protocolConfig) {
throw new Error(`${protocol} configuration is missing`);
}
await saveConnection({
variables: {
...(isEditing && connectedAccountId
? { id: connectedAccountId }
: {}),
accountOwnerId: currentWorkspaceMember.id,
handle: formValues.handle,
accountType: {
type: protocol,
},
connectionParameters: protocolConfig,
},
});
},
[saveConnection, isEditing, connectedAccountId, currentWorkspaceMember?.id],
);
const handleSave = useCallback(
async (formValues: ConnectionFormData): Promise<void> => {
const configuredProtocols = getConfiguredProtocols(formValues);
try {
await Promise.all(
configuredProtocols.map((protocol) =>
saveIndividualConnection(protocol, formValues),
),
);
const successMessage = isEditing
? t`Connection successfully updated`
: t`Connection successfully created`;
enqueueSuccessSnackBar({ message: successMessage });
navigate(SettingsPath.Accounts);
} catch (error) {
const errorMessage =
error instanceof Error
? error.message
: 'An unexpected error occurred';
enqueueErrorSnackBar({ message: errorMessage });
}
},
[
getConfiguredProtocols,
saveIndividualConnection,
isEditing,
enqueueSuccessSnackBar,
enqueueErrorSnackBar,
navigate,
],
);
const canSave = isValid && !isSubmitting;
const loading = accountLoading || saveLoading;
return {
formMethods,
handleSave,
handleSubmit,
canSave,
isSubmitting,
loading,
connectedAccount,
};
};

View File

@ -17,11 +17,11 @@ export const useTriggerProviderReconnect = () => {
) => {
if (provider === ConnectedAccountProvider.IMAP_SMTP_CALDAV) {
if (!accountId) {
navigate(SettingsPath.NewImapConnection);
navigate(SettingsPath.NewImapSmtpCaldavConnection);
return;
}
navigate(SettingsPath.EditImapConnection, {
navigate(SettingsPath.EditImapSmtpCaldavConnection, {
connectedAccountId: accountId,
});
return;

View File

@ -0,0 +1,47 @@
import { ACCOUNT_PROTOCOLS } from '@/settings/accounts/constants/AccountProtocols';
import { z } from 'zod';
import { ConnectionParameters } from '~/generated/graphql';
const connectionParameters = z
.object({
host: z.string().default(''),
port: z.number().int().nullable().default(null),
password: z.string().default(''),
secure: z.boolean().default(true),
})
.refine(
(data) => {
if (Boolean(data.host?.trim()) && Boolean(data.password?.trim())) {
return data.port && data.port > 0;
}
return true;
},
{
message: 'Port must be a positive number when configuring this protocol',
path: ['port'],
},
);
export const connectionImapSmtpCalDav = z
.object({
handle: z.string().email('Invalid email address'),
IMAP: connectionParameters.optional(),
SMTP: connectionParameters.optional(),
CALDAV: connectionParameters.optional(),
})
.refine(
(data) => {
return ACCOUNT_PROTOCOLS.some((protocol) =>
isProtocolConfigured(data[protocol] as ConnectionParameters),
);
},
{
message:
'At least one account type (IMAP, SMTP, or CalDAV) must be completely configured',
path: ['handle'],
},
);
export const isProtocolConfigured = (config: ConnectionParameters): boolean => {
return Boolean(config?.host?.trim() && config?.password?.trim());
};

View File

@ -4,9 +4,9 @@ import { ComponentType } from 'react';
import { SettingsListSkeletonCard } from '@/settings/components/SettingsListSkeletonCard';
import { SettingsListItemCardContent } from './SettingsListItemCardContent';
import { Card, CardFooter } from 'twenty-ui/layout';
import { IconComponent, IconPlus } from 'twenty-ui/display';
import { Card, CardFooter } from 'twenty-ui/layout';
import { SettingsListItemCardContent } from './SettingsListItemCardContent';
const StyledFooter = styled(CardFooter)`
align-items: center;

View File

@ -5,8 +5,8 @@ export enum SettingsPath {
NewAccount = 'accounts/new',
AccountsCalendars = 'accounts/calendars',
AccountsEmails = 'accounts/emails',
NewImapConnection = 'accounts/new-imap-connection',
EditImapConnection = 'accounts/edit-imap-connection/:connectedAccountId',
NewImapSmtpCaldavConnection = 'accounts/new-imap-smtp-caldav-connection',
EditImapSmtpCaldavConnection = 'accounts/edit-imap-smtp-caldav-connection/:connectedAccountId',
Billing = 'billing',
Objects = 'objects',
ObjectOverview = 'objects/overview',

View File

@ -60,6 +60,15 @@ const StyledLightIconButton = styled(LightIconButton)<{
: 'transparent'};
`;
const StyledMatrixItem = styled.div`
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
`;
const convertIconKeyToLabel = (iconKey: string) =>
iconKey.replace(/[A-Z]/g, (letter) => ` ${letter}`).trim();
@ -84,18 +93,20 @@ const IconPickerIcon = ({
);
return (
<SelectableListItem itemId={iconKey} onEnter={onClick}>
<StyledLightIconButton
key={iconKey}
aria-label={convertIconKeyToLabel(iconKey)}
size="medium"
title={iconKey}
isSelected={iconKey === selectedIconKey || !!isSelectedItemId}
isFocused={iconKey === focusedIconKey}
Icon={Icon}
onClick={onClick}
/>
</SelectableListItem>
<StyledMatrixItem>
<SelectableListItem itemId={iconKey} onEnter={onClick}>
<StyledLightIconButton
key={iconKey}
aria-label={convertIconKeyToLabel(iconKey)}
size="medium"
title={iconKey}
isSelected={iconKey === selectedIconKey || !!isSelectedItemId}
isFocused={iconKey === focusedIconKey}
Icon={Icon}
onClick={onClick}
/>
</SelectableListItem>
</StyledMatrixItem>
);
};

View File

@ -50,7 +50,14 @@ export const useOpenDropdown = () => {
type: FocusComponentType.DROPDOWN,
instanceId: dropdownComponentInstanceId,
},
globalHotkeysConfig: args?.globalHotkeysConfig ?? undefined,
globalHotkeysConfig: {
enableGlobalHotkeysConflictingWithKeyboard:
args?.globalHotkeysConfig
?.enableGlobalHotkeysConflictingWithKeyboard ?? false,
enableGlobalHotkeysWithModifiers:
args?.globalHotkeysConfig?.enableGlobalHotkeysWithModifiers ??
false,
},
});
},
[

View File

@ -0,0 +1,12 @@
import { FocusStackItem } from '@/ui/utilities/focus/types/FocusStackItem';
import { selector } from 'recoil';
import { focusStackState } from './focusStackState';
export const currentFocusedItemSelector = selector<FocusStackItem | undefined>({
key: 'currentFocusedItemSelector',
get: ({ get }) => {
const focusStack = get(focusStackState);
return focusStack.at(-1);
},
});

View File

@ -98,7 +98,10 @@ export const WorkflowEditActionSendEmail = ({
}
};
if (!isDefined(scopes) || !hasSendScope(connectedAccount, scopes)) {
if (
connectedAccount.provider !== ConnectedAccountProvider.IMAP_SMTP_CALDAV &&
(!isDefined(scopes) || !hasSendScope(connectedAccount, scopes))
) {
await triggerApisOAuth(connectedAccount.provider, {
redirectLocation: redirectUrl,
loginHint: connectedAccount.handle,
@ -180,6 +183,7 @@ export const WorkflowEditActionSendEmail = ({
provider: true,
scopes: true,
accountOwnerId: true,
connectionParameters: true,
},
});

View File

@ -1,6 +1,7 @@
import { FormNumberFieldInput } from '@/object-record/record-field/form-types/components/FormNumberFieldInput';
import { FormTextFieldInput } from '@/object-record/record-field/form-types/components/FormTextFieldInput';
import { Select } from '@/ui/input/components/Select';
import { GenericDropdownContentWidth } from '@/ui/layout/dropdown/constants/GenericDropdownContentWidth';
import { WorkflowCronTrigger } from '@/workflow/types/Workflow';
import { WorkflowStepBody } from '@/workflow/workflow-steps/components/WorkflowStepBody';
import { WorkflowStepHeader } from '@/workflow/workflow-steps/components/WorkflowStepHeader';
@ -10,12 +11,12 @@ import { getTriggerHeaderType } from '@/workflow/workflow-trigger/utils/getTrigg
import { getTriggerIcon } from '@/workflow/workflow-trigger/utils/getTriggerIcon';
import { getTriggerDefaultLabel } from '@/workflow/workflow-trigger/utils/getTriggerLabel';
import { useTheme } from '@emotion/react';
import { t } from '@lingui/core/macro';
import { isNumber } from '@sniptt/guards';
import cron from 'cron-validate';
import { useState } from 'react';
import { isDefined } from 'twenty-shared/utils';
import { useIcons } from 'twenty-ui/display';
import { GenericDropdownContentWidth } from '@/ui/layout/dropdown/constants/GenericDropdownContentWidth';
type WorkflowEditTriggerCronFormProps = {
trigger: WorkflowCronTrigger;
@ -82,7 +83,7 @@ export const WorkflowEditTriggerCronForm = ({
<WorkflowStepBody>
<Select
dropdownId="workflow-edit-cron-trigger-interval"
label="Trigger interval"
label={t`Trigger interval`}
fullWidth
disabled={triggerOptions.readonly}
value={trigger.settings.type}
@ -107,7 +108,7 @@ export const WorkflowEditTriggerCronForm = ({
/>
{trigger.settings.type === 'CUSTOM' && (
<FormTextFieldInput
label="Expression"
label={t`Expression`}
placeholder="0 */1 * * *"
error={errorMessagesVisible ? errorMessages.CUSTOM : undefined}
onBlur={onBlur}
@ -149,7 +150,7 @@ export const WorkflowEditTriggerCronForm = ({
{trigger.settings.type === 'DAYS' && (
<>
<FormNumberFieldInput
label="Days Between Triggers"
label={t`Days between triggers`}
error={errorMessagesVisible ? errorMessages.DAYS_day : undefined}
onBlur={onBlur}
defaultValue={trigger.settings.schedule.day}
@ -198,7 +199,7 @@ export const WorkflowEditTriggerCronForm = ({
readonly={triggerOptions.readonly}
/>
<FormNumberFieldInput
label="Trigger at Hour"
label={t`Trigger at hour`}
error={errorMessagesVisible ? errorMessages.DAYS_hour : undefined}
onBlur={onBlur}
defaultValue={trigger.settings.schedule.hour}
@ -247,7 +248,7 @@ export const WorkflowEditTriggerCronForm = ({
readonly={triggerOptions.readonly}
/>
<FormNumberFieldInput
label="Trigger at Minute"
label={t`Trigger at minute`}
error={
errorMessagesVisible ? errorMessages.DAYS_minute : undefined
}
@ -302,7 +303,7 @@ export const WorkflowEditTriggerCronForm = ({
{trigger.settings.type === 'HOURS' && (
<>
<FormNumberFieldInput
label="Hours Between Triggers"
label={t`Hours between triggers`}
error={
errorMessagesVisible ? errorMessages.HOURS_hour : undefined
}
@ -349,7 +350,7 @@ export const WorkflowEditTriggerCronForm = ({
readonly={triggerOptions.readonly}
/>
<FormNumberFieldInput
label="Trigger at Minute"
label={t`Trigger at minute`}
error={
errorMessagesVisible ? errorMessages.HOURS_minute : undefined
}
@ -399,7 +400,7 @@ export const WorkflowEditTriggerCronForm = ({
)}
{trigger.settings.type === 'MINUTES' && (
<FormNumberFieldInput
label="Minutes Between Triggers"
label={t`Minutes between triggers`}
error={errorMessagesVisible ? errorMessages.MINUTES : undefined}
onBlur={onBlur}
defaultValue={trigger.settings.schedule.minute}

View File

@ -54,5 +54,5 @@ export const mockedClientConfig: ClientConfig = {
isGoogleCalendarEnabled: true,
isAttachmentPreviewEnabled: true,
isConfigVariablesInDbEnabled: false,
isIMAPMessagingEnabled: false,
isImapSmtpCaldavEnabled: false,
};

View File

@ -14,7 +14,7 @@ FRONTEND_URL=http://localhost:3001
# REFRESH_TOKEN_EXPIRES_IN=90d
# FILE_TOKEN_EXPIRES_IN=1d
# MESSAGING_PROVIDER_GMAIL_ENABLED=false
# MESSAGING_PROVIDER_IMAP_ENABLED=false
# IS_IMAP_SMTP_CALDAV_ENABLED=false
# CALENDAR_PROVIDER_GOOGLE_ENABLED=false
# MESSAGING_PROVIDER_MICROSOFT_ENABLED=false
# CALENDAR_PROVIDER_MICROSOFT_ENABLED=false

View File

@ -11,7 +11,7 @@ FRONTEND_URL=http://localhost:3001
AUTH_GOOGLE_ENABLED=false
MESSAGING_PROVIDER_GMAIL_ENABLED=false
MESSAGING_PROVIDER_IMAP_ENABLED=false
IS_IMAP_SMTP_CALDAV_ENABLED=false
CALENDAR_PROVIDER_GOOGLE_ENABLED=false
MESSAGING_PROVIDER_MICROSOFT_ENABLED=false
CALENDAR_PROVIDER_MICROSOFT_ENABLED=false

View File

@ -15,7 +15,7 @@ import { WORKFLOW_RUN_STANDARD_FIELD_IDS } from 'src/engine/workspace-manager/wo
import { WorkflowRunStatus } from 'src/modules/workflow/common/standard-objects/workflow-run.workspace-entity';
@Command({
name: 'upgrade:1-2:add-enqueued-status-to-workflow-run',
name: 'upgrade:1-1:add-enqueued-status-to-workflow-run',
description: 'Add enqueued status to workflow run',
})
export class AddEnqueuedStatusToWorkflowRunCommand extends ActiveOrSuspendedWorkspacesMigrationCommandRunner {
@ -65,6 +65,8 @@ export class AddEnqueuedStatusToWorkflowRunCommand extends ActiveOrSuspendedWork
this.logger.log(
`Workflow run status field metadata options already contain enqueued status for workspace ${workspaceId}`,
);
return;
} else if (options.dryRun) {
this.logger.log(
`Would add enqueued status to workflow run status field metadata for workspace ${workspaceId}`,

Some files were not shown because too many files have changed in this diff Show More